source: chapter08/readline.xml@ 2d66549

ml-11.0 multilib
Last change on this file since 2d66549 was 6dfcfecc, checked in by Xℹ Ruoyao <xry111@…>, 3 years ago

Update to new lfs structure

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/multilib@11986 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 6.8 KB
RevLine 
[3125dfb]1<?xml version="1.0" encoding="ISO-8859-1"?>
[b06ca36]2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
[3125dfb]4 <!ENTITY % general-entities SYSTEM "../general.ent">
5 %general-entities;
6]>
[3f3931b0]7
[81fd230]8<sect1 id="ch-system-readline" role="wrap">
[3f3931b0]9 <?dbhtml filename="readline.html"?>
10
[e747759]11 <sect1info condition="script">
12 <productname>readline</productname>
13 <productnumber>&readline-version;</productnumber>
14 <address>&readline-url;</address>
15 </sect1info>
16
[3f3931b0]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/>
[3125dfb]25
[3f3931b0]26 <para>The Readline package is a set of libraries that offers command-line
27 editing and history capabilities.</para>
[3125dfb]28
[3f3931b0]29 <segmentedlist>
30 <segtitle>&buildtime;</segtitle>
31 <segtitle>&diskspace;</segtitle>
[3125dfb]32
[3f3931b0]33 <seglistitem>
[6dfcfecc]34 <seg>&readline-fin-sbu;</seg>
35 <seg>&readline-fin-du;</seg>
[3f3931b0]36 </seglistitem>
37 </segmentedlist>
[3125dfb]38
[3f3931b0]39 </sect2>
40
41 <sect2 role="installation">
42 <title>Installation of Readline</title>
43
[2ed4bb3f]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
[0445a3d]49<screen><userinput remap="pre">sed -i '/MV.*old/d' Makefile.in
[2ed4bb3f]50sed -i '/{OLDSUFF}/c:' support/shlib-install</userinput></screen>
[67e8a9b]51
[3f3931b0]52 <para>Prepare Readline for compilation:</para>
[3125dfb]53
[73b2841]54<screen><userinput remap="configure">./configure --prefix=/usr \
55 --disable-static \
[e37764e]56 --with-curses \
[73b2841]57 --docdir=/usr/share/doc/readline-&readline-version;</userinput></screen>
[3125dfb]58
[e37764e]59 <variablelist>
60 <title>The meaning of the configure option:</title>
61
62 <varlistentry>
[6dfcfecc]63 <term><parameter>--with-curses</parameter></term>
[e37764e]64 <listitem>
65 <para>This option tells Readline that it can find the termcap
[6dfcfecc]66 library functions in the curses library, rather than a separate
67 termcap library. It allows generating a correct
68 <filename>readline.pc</filename> file.</para>
[e37764e]69 </listitem>
70 </varlistentry>
71
72 </variablelist>
73
[3f3931b0]74 <para>Compile the package:</para>
[3125dfb]75
[6dfcfecc]76<screen><userinput remap="make">make SHLIB_LIBS="-lncursesw"</userinput></screen>
[3125dfb]77
[3f3931b0]78 <variablelist>
79 <title>The meaning of the make option:</title>
[81fd230]80
[3f3931b0]81 <varlistentry>
[6dfcfecc]82 <term><parameter>SHLIB_LIBS="-lncursesw"</parameter></term>
[3f3931b0]83 <listitem>
84 <para>This option forces Readline to link against the
[1e472fb]85 <filename class="libraryfile">libncursesw</filename> library.</para>
[3f3931b0]86 </listitem>
87 </varlistentry>
[81fd230]88
[3f3931b0]89 </variablelist>
[0be3d41]90
[3f3931b0]91 <para>This package does not come with a test suite.</para>
92
93 <para>Install the package:</para>
[3125dfb]94
[6dfcfecc]95<screen><userinput remap="install">make SHLIB_LIBS="-lncursesw" install</userinput></screen>
[3125dfb]96
[a326b1d7]97 <para>Now move the dynamic libraries to a more appropriate location
[adcd988]98 and fix up some permissions and symbolic links:</para>
[3125dfb]99
[a326b1d7]100<screen><userinput remap="install">mv -v /usr/lib/lib{readline,history}.so.* /lib
[adcd988]101chmod -v u+w /lib/lib{readline,history}.so.*
[a326b1d7]102ln -sfv ../../lib/$(readlink /usr/lib/libreadline.so) /usr/lib/libreadline.so
103ln -sfv ../../lib/$(readlink /usr/lib/libhistory.so ) /usr/lib/libhistory.so</userinput></screen>
[81fd230]104
[52e836a]105 <para>If desired, install the documentation:</para>
106
[a57d556]107<screen><userinput remap="install">install -v -m644 doc/*.{ps,pdf,html,dvi} /usr/share/doc/readline-&readline-version;</userinput></screen>
[52e836a]108
[3f3931b0]109 </sect2>
110
[6dfcfecc]111 <!-- - - - - - - - - - -->
112 <!-- Multilib - 32bit -->
113 <!-- - - - - - - - - - -->
[fd48baa]114
115 <sect2 arch="ml_32,ml_all" role="installation">
[6dfcfecc]116 <title>Installation of Readline - 32bit</title>
[b3f1ebb3]117
118 <para>Clean previous build:</para>
119
120<screen><userinput remap="pre">make distclean</userinput></screen>
121
122 <para>Prepare Readline for compilation:</para>
123
[6dfcfecc]124<screen><userinput remap="configure">CC="gcc -m32" ./configure \
[b3f1ebb3]125 --prefix=/usr \
[6dfcfecc]126 --libdir=&usr-lib-m32; \
[b3f1ebb3]127 --disable-static \
128 --host=i686-pc-linux-gnu</userinput></screen>
129
130 <para>Compile the package:</para>
131
132<screen><userinput remap="make">make</userinput></screen>
133
134 <para>Install the package:</para>
135
136<screen><userinput remap="install">make DESTDIR=$PWD/DESTDIR install
[6dfcfecc]137cp -Rv DESTDIR&usr-lib-m32;/* &usr-lib-m32;
[b3f1ebb3]138rm -rf DESTDIR</userinput></screen>
139
[6dfcfecc]140 </sect2><!-- m32 -->
[b3f1ebb3]141
[6dfcfecc]142 <!-- - - - - - - - - - -->
143 <!-- Multilib - x32bit -->
144 <!-- - - - - - - - - - -->
[fd48baa]145
146 <sect2 arch="ml_x32,ml_all" role="installation">
[6dfcfecc]147 <title>Installation of Readline - x32bit</title>
[b3f1ebb3]148
149 <para>Clean previous build:</para>
150
151<screen><userinput remap="pre">make distclean</userinput></screen>
152
153 <para>Prepare Readline for compilation:</para>
154
155<screen><userinput remap="configure">CC="gcc -mx32" ./configure \
156 --prefix=/usr \
[6dfcfecc]157 --libdir=&usr-lib-mx32; \
[b3f1ebb3]158 --disable-static \
159 --host=x86_64-pc-linux-gnux32</userinput></screen>
160
161 <para>Compile the package:</para>
162
163<screen><userinput remap="make">make</userinput></screen>
164
165 <para>Install the package:</para>
166
167<screen><userinput remap="install">make DESTDIR=$PWD/DESTDIR install
[6dfcfecc]168cp -Rv DESTDIR&usr-lib-mx32;/* &usr-lib-mx32;
[b3f1ebb3]169rm -rf DESTDIR</userinput></screen>
170
[6dfcfecc]171 </sect2><!-- mx32 -->
[b3f1ebb3]172
[3f3931b0]173 <sect2 id="contents-readline" role="content">
174 <title>Contents of Readline</title>
175
176 <segmentedlist>
177 <segtitle>Installed libraries</segtitle>
[fe05b08]178 <segtitle>Installed directories</segtitle>
[3f3931b0]179
180 <seglistitem>
[040ecb6]181 <seg>libhistory.so and libreadline.so</seg>
[78cc3be]182 <seg>/usr/include/readline and
[fe05b08]183 /usr/share/doc/readline-&readline-version;</seg>
[3f3931b0]184 </seglistitem>
185 </segmentedlist>
186
187 <variablelist>
188 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
189 <?dbfo list-presentation="list"?>
190 <?dbhtml list-presentation="table"?>
191
192 <varlistentry id="libhistory">
193 <term><filename class="libraryfile">libhistory</filename></term>
194 <listitem>
195 <para>Provides a consistent user interface for recalling lines
196 of history</para>
197 <indexterm zone="ch-system-readline libhistory">
198 <primary sortas="c-libhistory">libhistory</primary>
199 </indexterm>
200 </listitem>
201 </varlistentry>
202
203 <varlistentry id="libreadline">
204 <term><filename class="libraryfile">libreadline</filename></term>
205 <listitem>
[0d84af1]206 <para>Provides a set of commands for manipulating text entered in an
207 interactive session of a program.</para>
[3f3931b0]208 <indexterm zone="ch-system-readline libreadline">
209 <primary sortas="c-libreadline">libreadline</primary>
210 </indexterm>
211 </listitem>
212 </varlistentry>
213
214 </variablelist>
215
216 </sect2>
[3125dfb]217
218</sect1>
Note: See TracBrowser for help on using the repository browser.