mirror of
https://git.linuxfromscratch.org/lfs.git
synced 2026-05-20 05:10:27 -04:00
git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/testing/BOOK@4040 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
110 lines
3.6 KiB
XML
110 lines
3.6 KiB
XML
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
|
|
<!ENTITY % general-entities SYSTEM "../general.ent">
|
|
%general-entities;
|
|
]>
|
|
<sect1 id="ch-system-readline" xreflabel="Readline" role="wrap">
|
|
<title>Readline-&readline-version;</title>
|
|
<?dbhtml filename="readline.html"?>
|
|
|
|
<indexterm zone="ch-system-readline"><primary sortas="a-Readline">Readline</primary></indexterm>
|
|
|
|
<sect2 role="package"><title/>
|
|
<para>The Readline package contains the Readline command-line library.</para>
|
|
|
|
<segmentedlist>
|
|
<segtitle>&buildtime;</segtitle>
|
|
<segtitle>&diskspace;</segtitle>
|
|
<seglistitem><seg>XXX SBU</seg><seg>3.8 MB</seg></seglistitem>
|
|
</segmentedlist>
|
|
|
|
<segmentedlist>
|
|
<segtitle>Readline installation depends on</segtitle>
|
|
<seglistitem><seg>Binutils, Coreutils, Diffutils, Gawk,
|
|
GCC, Glibc, Grep, Make, Ncurses, Sed</seg></seglistitem>
|
|
</segmentedlist>
|
|
</sect2>
|
|
|
|
<sect2 role="installation">
|
|
<title>Installation of Readline</title>
|
|
|
|
<para>The following patch fixes a problem where Readline sometimes
|
|
will only show 33 characters on a line and then wraps to the next
|
|
line.</para>
|
|
|
|
<screen><userinput>patch -Np1 -i ../readline-&readline-version;-display_wrap-1.patch</userinput></screen>
|
|
|
|
<para>Prepare Readline for compilation:</para>
|
|
|
|
<screen><userinput>./configure --prefix=/usr</userinput></screen>
|
|
|
|
<para>Compile the package:</para>
|
|
|
|
<screen><userinput>make SHLIB_XLDFLAGS=-lncurses</userinput></screen>
|
|
|
|
<para>The meaning of the make option:</para>
|
|
|
|
<variablelist>
|
|
<varlistentry>
|
|
<term><parameter>SHLIB_XLDFLAGS=-lncurses</parameter></term>
|
|
<listitem><para>This option forces readline to link against the
|
|
<filename>libncurses</filename> library.</para></listitem>
|
|
</varlistentry>
|
|
</variablelist>
|
|
|
|
<para>Install the package:</para>
|
|
|
|
<screen><userinput>make install</userinput></screen>
|
|
|
|
<para>Give Readline's dynamic libraries more appropriate permissions:</para>
|
|
|
|
<screen><userinput>chmod 755 /usr/lib/*.&readline-version;</userinput></screen>
|
|
|
|
<para>Move the dynamic libraries to a more appropriate location:</para>
|
|
|
|
<screen><userinput>mv /usr/lib/lib{readline,history}.so.5* /lib</userinput></screen>
|
|
|
|
<para>Because the libraries have been moved, a few symlinks are now pointing to
|
|
non-existent files. Recreate those symlinks:</para>
|
|
|
|
<screen><userinput>ln -sf ../../lib/libhistory.so.5 /usr/lib/libhistory.so
|
|
ln -sf ../../lib/libreadline.so.5 /usr/lib/libreadline.so</userinput></screen>
|
|
|
|
</sect2>
|
|
|
|
|
|
<sect2 id="contents-readline" role="content"><title>Contents of Readline</title>
|
|
<segmentedlist>
|
|
<segtitle>Installed libraries</segtitle>
|
|
<seglistitem><seg>libhistory.[a,so], libreadline.[a,so]</seg></seglistitem>
|
|
</segmentedlist>
|
|
|
|
<variablelist><bridgehead renderas="sect3">Short descriptions</bridgehead>
|
|
<?dbfo list-presentation="list"?>
|
|
|
|
<varlistentry id="libhistory">
|
|
<term><filename class="libraryfile">libhistory</filename></term>
|
|
<listitem>
|
|
<para>a programming tool that provides a consistent user interface
|
|
for recalling lines of history.</para>
|
|
<indexterm zone="ch-system-readline libhistory"><primary sortas="c-libhistory">libhistory</primary></indexterm>
|
|
</listitem>
|
|
</varlistentry>
|
|
|
|
<varlistentry id="libreadline">
|
|
<term><filename class="libraryfile">libreadline</filename></term>
|
|
<listitem>
|
|
<para>a utility which aids in the consistency of user interface
|
|
across discrete programs that need to provide a command line
|
|
interface.</para>
|
|
<indexterm zone="ch-system-readline libreadline"><primary sortas="c-libreadline">libreadline</primary></indexterm>
|
|
</listitem>
|
|
</varlistentry>
|
|
|
|
</variablelist>
|
|
|
|
</sect2>
|
|
|
|
</sect1>
|
|
|