source: chapter06/readline.xml@ 48553c1

Last change on this file since 48553c1 was ca17032, checked in by Manuel Canales Esparcia <manuel@…>, 19 years ago

Including patches.ent from general.ent

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@7137 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 3.7 KB
RevLine 
[3125dfb]1<?xml version="1.0" encoding="ISO-8859-1"?>
[1770019]2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN" "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
[3125dfb]3 <!ENTITY % general-entities SYSTEM "../general.ent">
4 %general-entities;
5]>
[81fd230]6<sect1 id="ch-system-readline" role="wrap">
[3125dfb]7<title>Readline-&readline-version;</title>
8<?dbhtml filename="readline.html"?>
9
10<indexterm zone="ch-system-readline"><primary sortas="a-Readline">Readline</primary></indexterm>
11
[a001133]12<sect2 role="package"><title/>
[e5846ef]13<para>The Readline package is a set of libraries that offers command-line
14editing and history capabilities.</para>
[3125dfb]15
[a001133]16<segmentedlist>
17<segtitle>&buildtime;</segtitle>
18<segtitle>&diskspace;</segtitle>
[1a017db]19<seglistitem><seg>0.11 SBU</seg><seg>9.1 MB</seg></seglistitem>
[a001133]20</segmentedlist>
[3125dfb]21
[81fd230]22<segmentedlist>
[45992ae]23<segtitle>&dependencies;</segtitle>
[81fd230]24<seglistitem><seg>Binutils, Coreutils, Diffutils, Gawk,
25GCC, Glibc, Grep, Make, Ncurses, and Sed</seg></seglistitem>
26</segmentedlist>
[a001133]27</sect2>
[3125dfb]28
[a001133]29<sect2 role="installation">
[3125dfb]30<title>Installation of Readline</title>
31
[e5846ef]32<para>The following patch includes a fix for a problem where Readline sometimes
33only shows 33 characters on a line and then wraps to the next line. It also
34includes other fixes recommended by the Readline author.</para>
[5e81f02]35
[3e36a78]36<screen><userinput>patch -Np1 -i ../&readline-fixes-patch;</userinput></screen>
[5e81f02]37
[e8d07afc]38<para>Prepare Readline for compilation:</para>
[3125dfb]39
[5091251]40<screen><userinput>./configure --prefix=/usr --libdir=/lib</userinput></screen>
[3125dfb]41
42<para>Compile the package:</para>
43
[a66c1cd3]44<screen><userinput>make SHLIB_XLDFLAGS=-lncurses</userinput></screen>
[3125dfb]45
[81fd230]46<para>The meaning of the make option:</para>
47
48<variablelist>
49<varlistentry>
50<term><parameter>SHLIB_XLDFLAGS=-lncurses</parameter></term>
51<listitem><para>This option forces Readline to link against the
52<filename class="libraryfile">libncurses</filename> library.</para></listitem>
53</varlistentry>
54</variablelist>
55
[3125dfb]56<para>Install the package:</para>
57
58<screen><userinput>make install</userinput></screen>
59
[81fd230]60<para>Give Readline's dynamic libraries more appropriate permissions:</para>
[3125dfb]61
[5998892]62<screen><userinput>chmod -v 755 /lib/lib{readline,history}.so*</userinput></screen>
[3125dfb]63
[e5846ef]64<para>Now move the static libraries to a more appropriate location:</para>
[3125dfb]65
[5998892]66<screen><userinput>mv -v /lib/lib{readline,history}.a /usr/lib</userinput></screen>
[3125dfb]67
[e5846ef]68<para>Next, remove the <filename class="extension">.so</filename> files in
69<filename class="directory">/lib</filename> and relink them into <filename
70class="directory">/usr/lib</filename>.</para>
[7111666]71
[5998892]72<screen><userinput>rm -v /lib/lib{readline,history}.so
73ln -sfv ../../lib/libreadline.so.5 /usr/lib/libreadline.so
74ln -sfv ../../lib/libhistory.so.5 /usr/lib/libhistory.so</userinput></screen>
[81fd230]75
[3125dfb]76</sect2>
77
78
[c6cb3aa]79<sect2 id="contents-readline" role="content"><title>Contents of Readline</title>
[81fd230]80<segmentedlist>
81<segtitle>Installed libraries</segtitle>
82<seglistitem><seg>libhistory.[a,so], and libreadline.[a,so]</seg></seglistitem>
83</segmentedlist>
[3f0c882]84
[81fd230]85<variablelist><bridgehead renderas="sect3">Short Descriptions</bridgehead>
86<?dbfo list-presentation="list"?>
[8f97096]87<?dbhtml list-presentation="table"?>
[81fd230]88
89<varlistentry id="libhistory">
90<term><filename class="libraryfile">libhistory</filename></term>
91<listitem>
92<para>Provides a consistent user interface
93for recalling lines of history</para>
94<indexterm zone="ch-system-readline libhistory"><primary sortas="c-libhistory">libhistory</primary></indexterm>
95</listitem>
96</varlistentry>
97
98<varlistentry id="libreadline">
99<term><filename class="libraryfile">libreadline</filename></term>
100<listitem>
101<para>Aids in the consistency of user interface
102across discrete programs that need to provide a command line
103interface</para>
104<indexterm zone="ch-system-readline libreadline"><primary sortas="c-libreadline">libreadline</primary></indexterm>
105</listitem>
106</varlistentry>
107
108</variablelist>
[3f0c882]109
[3125dfb]110</sect2>
111
112</sect1>
[81fd230]113
Note: See TracBrowser for help on using the repository browser.