source: chapter06/readline.xml@ a326b1d7

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 7.5 7.6 7.7 7.8 7.9 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 a326b1d7 was a326b1d7, checked in by Bruce Dubbs <bdubbs@…>, 10 years ago

Fix kmod, procps-ng, zlib, readline, ncurses,
and xz methods of establishing correct symbolic links
for libraries.

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

  • Property mode set to 100644
File size: 4.7 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../general.ent">
5 %general-entities;
6]>
7
8<sect1 id="ch-system-readline" role="wrap">
9 <?dbhtml filename="readline.html"?>
10
11 <sect1info condition="script">
12 <productname>readline</productname>
13 <productnumber>&readline-version;</productnumber>
14 <address>&readline-url;</address>
15 </sect1info>
16
17 <title>Readline-&readline-version;</title>
18
19 <indexterm zone="ch-system-readline">
20 <primary sortas="a-Readline">Readline</primary>
21 </indexterm>
22
23 <sect2 role="package">
24 <title/>
25
26 <para>The Readline package is a set of libraries that offers command-line
27 editing and history capabilities.</para>
28
29 <segmentedlist>
30 <segtitle>&buildtime;</segtitle>
31 <segtitle>&diskspace;</segtitle>
32
33 <seglistitem>
34 <seg>&readline-ch6-sbu;</seg>
35 <seg>&readline-ch6-du;</seg>
36 </seglistitem>
37 </segmentedlist>
38
39 </sect2>
40
41 <sect2 role="installation">
42 <title>Installation of Readline</title>
43
44 <para>Reinstalling Readline will cause the old libraries to be moved to
45 &lt;libraryname&gt;.old. While this is normally not a problem, in some cases
46 it can trigger a linking bug in <command>ldconfig</command>. This can be
47 avoided by issuing the following two seds:</para>
48
49<screen><userinput remap="pre">sed -i '/MV.*old/d' Makefile.in
50sed -i '/{OLDSUFF}/c:' support/shlib-install</userinput></screen>
51
52 <para>Apply a patch to fix a known bug that has been fixed upstream:</para>
53
54<screen><userinput remap="pre">patch -Np1 -i ../&readline-fixes-patch;</userinput></screen>
55
56 <para>Prepare Readline for compilation:</para>
57
58<screen><userinput remap="configure">./configure --prefix=/usr</userinput></screen>
59
60 <para>Compile the package:</para>
61
62<screen><userinput remap="make">make SHLIB_LIBS=-lncurses</userinput></screen>
63
64 <variablelist>
65 <title>The meaning of the make option:</title>
66
67 <varlistentry>
68 <term><parameter>SHLIB_LIBS=-lncurses</parameter></term>
69 <listitem>
70 <para>This option forces Readline to link against the
71 <filename class="libraryfile">libncurses</filename> (really,
72 <filename class="libraryfile">libncursesw</filename>) library.</para>
73 </listitem>
74 </varlistentry>
75
76 </variablelist>
77
78 <para>This package does not come with a test suite.</para>
79
80 <para>Install the package:</para>
81
82<screen><userinput remap="install">make install</userinput></screen>
83
84 <para>Now move the dynamic libraries to a more appropriate location
85 and fix up some symbolic links:</para>
86
87<screen><userinput remap="install">mv -v /usr/lib/lib{readline,history}.so.* /lib
88ln -sfv ../../lib/$(readlink /usr/lib/libreadline.so) /usr/lib/libreadline.so
89ln -sfv ../../lib/$(readlink /usr/lib/libhistory.so ) /usr/lib/libhistory.so</userinput></screen>
90
91 <para>If desired, install the documentation:</para>
92
93<screen><userinput remap="install">mkdir -v /usr/share/doc/readline-&readline-version;
94install -v -m644 doc/*.{ps,pdf,html,dvi} \
95 /usr/share/doc/readline-&readline-version;</userinput></screen>
96
97 </sect2>
98
99 <sect2 id="contents-readline" role="content">
100 <title>Contents of Readline</title>
101
102 <segmentedlist>
103 <segtitle>Installed libraries</segtitle>
104 <segtitle>Installed directories</segtitle>
105
106 <seglistitem>
107 <seg>libhistory.{a,so}, and libreadline.{a,so}</seg>
108 <seg>/usr/include/readline, /usr/share/readline,
109 /usr/share/doc/readline-&readline-version;</seg>
110 </seglistitem>
111 </segmentedlist>
112
113 <variablelist>
114 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
115 <?dbfo list-presentation="list"?>
116 <?dbhtml list-presentation="table"?>
117
118 <varlistentry id="libhistory">
119 <term><filename class="libraryfile">libhistory</filename></term>
120 <listitem>
121 <para>Provides a consistent user interface for recalling lines
122 of history</para>
123 <indexterm zone="ch-system-readline libhistory">
124 <primary sortas="c-libhistory">libhistory</primary>
125 </indexterm>
126 </listitem>
127 </varlistentry>
128
129 <varlistentry id="libreadline">
130 <term><filename class="libraryfile">libreadline</filename></term>
131 <listitem>
132 <para>Aids in the consistency of user interface across discrete
133 programs that need to provide a command line interface</para>
134 <indexterm zone="ch-system-readline libreadline">
135 <primary sortas="c-libreadline">libreadline</primary>
136 </indexterm>
137 </listitem>
138 </varlistentry>
139
140 </variablelist>
141
142 </sect2>
143
144</sect1>
Note: See TracBrowser for help on using the repository browser.