use gnu readline for slang interpreter by default

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@12436 af4574ff-66df-0310-9fd7-8a98e5e911e0
This commit is contained in:
Igor Živković 2013-12-23 14:22:35 +00:00
parent a67e66fc9f
commit b3a719ef2c

View File

@ -84,7 +84,9 @@
<para>Install <application>S-Lang</application> by running the following
commands:</para>
<screen><userinput>./configure --prefix=/usr --sysconfdir=/etc &amp;&amp;
<screen><userinput>./configure --prefix=/usr \
--sysconfdir=/etc \
--with-readline=gnu &amp;&amp;
make</userinput></screen>
<para>To test the results, issue: <command>make check</command>. Note that
@ -104,16 +106,18 @@ chmod -v 755 /usr/lib/libslang.so.&slang-version; \
<sect2 role="commands">
<title>Command Explanations</title>
<para>
<parameter>--with-readline=gnu</parameter>: This parameter sets GNU
<application>Readline</application> to be used by the parser interface
instead of the <application>S-Lang</application> internal version.
</para>
<para><command>make install_doc_dir=/usr/share/doc/slang-&slang-version;
SLSH_DOC_DIR=/usr/share/doc/slang-&slang-version;/slsh install-all</command>:
This command installs the static library as well as
the dynamic shared version and related modules. It also changes the
documentation installation directories to a versioned directory.</para>
<para><option>--with-readline=gnu</option>: Use this parameter to use the
Gnu <application>Readline</application> parser instead of the
<application>S-Lang</application> internal version.</para>
</sect2>
<sect2 role="configuration">