source: chapter06/readline.xml@ 2c75e3c

10.0 10.0-rc1 10.1 10.1-rc1 11.0 11.0-rc1 11.0-rc2 11.0-rc3 11.1 11.1-rc1 11.2 11.2-rc1 11.3 11.3-rc1 12.0 12.0-rc1 12.1 12.1-rc1 6.3 6.4 6.5 6.6 6.7 6.8 7.0 7.1 7.2 7.3 7.4 7.5 7.5-systemd 7.6 7.6-systemd 7.7 7.7-systemd 7.8 7.8-systemd 7.9 7.9-systemd 8.0 8.1 8.2 8.3 8.4 9.0 9.1 arm bdubbs/gcc13 ml-11.0 multilib renodr/libudev-from-systemd s6-init trunk xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/lfs-next xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/mips64el xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since 2c75e3c was 2c75e3c, checked in by Jeremy Huntwork <jhuntwork@…>, 18 years ago

Upgrade to readline-5.1. Also bash removed bash-3.0 and readline-5.0 specific patches.

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

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