source: chapter08/readline.xml@ 5a0eccd

multilib
Last change on this file since 5a0eccd was 46405a5b, checked in by Thomas Trepl (Moody) <thomas@…>, 20 months ago

Automatic merge of trunk into multilib

  • Property mode set to 100644
File size: 6.7 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
[cc197d0]26 <para>The Readline package is a set of libraries that offer command-line
[3f3931b0]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
[efae039]52 <para>Now fix a problem identified upstream:</para>
53
54<screen><userinput remap="pre">patch -Np1 -i ../&readline-fixes-patch;</userinput></screen>
[67e8a9b]55
[3f3931b0]56 <para>Prepare Readline for compilation:</para>
[3125dfb]57
[73b2841]58<screen><userinput remap="configure">./configure --prefix=/usr \
59 --disable-static \
[e37764e]60 --with-curses \
[73b2841]61 --docdir=/usr/share/doc/readline-&readline-version;</userinput></screen>
[3125dfb]62
[e37764e]63 <variablelist>
[cc197d0]64 <title>The meaning of the new configure option:</title>
[e37764e]65
66 <varlistentry>
[6dfcfecc]67 <term><parameter>--with-curses</parameter></term>
[e37764e]68 <listitem>
69 <para>This option tells Readline that it can find the termcap
[cc197d0]70 library functions in the curses library, not a separate
71 termcap library. This will generate the correct
[c37e846]72 <filename>readline.pc</filename> file.</para>
[e37764e]73 </listitem>
74 </varlistentry>
75
76 </variablelist>
77
[3f3931b0]78 <para>Compile the package:</para>
[3125dfb]79
[6dfcfecc]80<screen><userinput remap="make">make SHLIB_LIBS="-lncursesw"</userinput></screen>
[3125dfb]81
[3f3931b0]82 <variablelist>
83 <title>The meaning of the make option:</title>
[81fd230]84
[3f3931b0]85 <varlistentry>
[6dfcfecc]86 <term><parameter>SHLIB_LIBS="-lncursesw"</parameter></term>
[3f3931b0]87 <listitem>
88 <para>This option forces Readline to link against the
[1e472fb]89 <filename class="libraryfile">libncursesw</filename> library.</para>
[3f3931b0]90 </listitem>
91 </varlistentry>
[81fd230]92
[3f3931b0]93 </variablelist>
[0be3d41]94
[3f3931b0]95 <para>This package does not come with a test suite.</para>
96
97 <para>Install the package:</para>
[3125dfb]98
[6dfcfecc]99<screen><userinput remap="install">make SHLIB_LIBS="-lncursesw" install</userinput></screen>
[3125dfb]100
[52e836a]101 <para>If desired, install the documentation:</para>
102
[a57d556]103<screen><userinput remap="install">install -v -m644 doc/*.{ps,pdf,html,dvi} /usr/share/doc/readline-&readline-version;</userinput></screen>
[52e836a]104
[3f3931b0]105 </sect2>
106
[6dfcfecc]107 <!-- - - - - - - - - - -->
108 <!-- Multilib - 32bit -->
109 <!-- - - - - - - - - - -->
[fd48baa]110
111 <sect2 arch="ml_32,ml_all" role="installation">
[6dfcfecc]112 <title>Installation of Readline - 32bit</title>
[b3f1ebb3]113
114 <para>Clean previous build:</para>
115
116<screen><userinput remap="pre">make distclean</userinput></screen>
117
118 <para>Prepare Readline for compilation:</para>
119
[6dfcfecc]120<screen><userinput remap="configure">CC="gcc -m32" ./configure \
[70aadfb]121 --host=i686-pc-linux-gnu \
122 --prefix=/usr \
123 --libdir=/usr/lib32 \
[9282602]124 --disable-static \
125 --with-curses</userinput></screen>
[b3f1ebb3]126
127 <para>Compile the package:</para>
128
[b08c451]129<screen><userinput remap="make">make SHLIB_LIBS="-lncursesw"</userinput></screen>
[b3f1ebb3]130
131 <para>Install the package:</para>
132
[b08c451]133<screen><userinput remap="install">make SHLIB_LIBS="-lncursesw" DESTDIR=$PWD/DESTDIR install
[0ebda11]134cp -Rv DESTDIR/usr/lib32/* /usr/lib32
[b3f1ebb3]135rm -rf DESTDIR</userinput></screen>
136
[6dfcfecc]137 </sect2><!-- m32 -->
[b3f1ebb3]138
[6dfcfecc]139 <!-- - - - - - - - - - -->
140 <!-- Multilib - x32bit -->
141 <!-- - - - - - - - - - -->
[fd48baa]142
143 <sect2 arch="ml_x32,ml_all" role="installation">
[6dfcfecc]144 <title>Installation of Readline - x32bit</title>
[b3f1ebb3]145
146 <para>Clean previous build:</para>
147
148<screen><userinput remap="pre">make distclean</userinput></screen>
149
150 <para>Prepare Readline for compilation:</para>
151
152<screen><userinput remap="configure">CC="gcc -mx32" ./configure \
[70aadfb]153 --host=x86_64-pc-linux-gnux32 \
154 --prefix=/usr \
155 --libdir=/usr/libx32 \
[9282602]156 --disable-static \
157 --with-curses</userinput></screen>
[b3f1ebb3]158
159 <para>Compile the package:</para>
160
[b08c451]161<screen><userinput remap="make">make SHLIB_LIBS="-lncursesw"</userinput></screen>
[b3f1ebb3]162
163 <para>Install the package:</para>
164
[b08c451]165<screen><userinput remap="install">make SHLIB_LIBS="-lncursesw" DESTDIR=$PWD/DESTDIR install
[0ebda11]166cp -Rv DESTDIR/usr/libx32/* /usr/libx32
[b3f1ebb3]167rm -rf DESTDIR</userinput></screen>
168
[6dfcfecc]169 </sect2><!-- mx32 -->
[b3f1ebb3]170
[3f3931b0]171 <sect2 id="contents-readline" role="content">
172 <title>Contents of Readline</title>
173
174 <segmentedlist>
175 <segtitle>Installed libraries</segtitle>
[fe05b08]176 <segtitle>Installed directories</segtitle>
[3f3931b0]177
178 <seglistitem>
[040ecb6]179 <seg>libhistory.so and libreadline.so</seg>
[78cc3be]180 <seg>/usr/include/readline and
[fe05b08]181 /usr/share/doc/readline-&readline-version;</seg>
[3f3931b0]182 </seglistitem>
183 </segmentedlist>
184
185 <variablelist>
186 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
187 <?dbfo list-presentation="list"?>
188 <?dbhtml list-presentation="table"?>
189
190 <varlistentry id="libhistory">
191 <term><filename class="libraryfile">libhistory</filename></term>
192 <listitem>
193 <para>Provides a consistent user interface for recalling lines
194 of history</para>
195 <indexterm zone="ch-system-readline libhistory">
196 <primary sortas="c-libhistory">libhistory</primary>
197 </indexterm>
198 </listitem>
199 </varlistentry>
200
201 <varlistentry id="libreadline">
202 <term><filename class="libraryfile">libreadline</filename></term>
203 <listitem>
[0d84af1]204 <para>Provides a set of commands for manipulating text entered in an
[4c8c128]205 interactive session of a program</para>
[3f3931b0]206 <indexterm zone="ch-system-readline libreadline">
207 <primary sortas="c-libreadline">libreadline</primary>
208 </indexterm>
209 </listitem>
210 </varlistentry>
211
212 </variablelist>
213
214 </sect2>
[3125dfb]215
216</sect1>
Note: See TracBrowser for help on using the repository browser.