source: chapter06/readline.xml@ 9256309

7.6-systemd 7.7-systemd 7.8-systemd 7.9-systemd
Last change on this file since 9256309 was 9256309, checked in by Krejzi <krejzi@…>, 10 years ago

Merge lfs svn.

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

  • Property mode set to 100644
File size: 4.5 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>Prepare Readline for compilation:</para>
53
54<screen><userinput remap="configure">./configure --prefix=/usr --docdir=/usr/share/doc/readline-&readline-version; </userinput></screen>
55
56 <para>Compile the package:</para>
57
58<screen><userinput remap="make">make SHLIB_LIBS=-lncurses</userinput></screen>
59
60 <variablelist>
61 <title>The meaning of the make option:</title>
62
63 <varlistentry>
64 <term><parameter>SHLIB_LIBS=-lncurses</parameter></term>
65 <listitem>
66 <para>This option forces Readline to link against the
67 <filename class="libraryfile">libncurses</filename> (really,
68 <filename class="libraryfile">libncursesw</filename>) library.</para>
69 </listitem>
70 </varlistentry>
71
72 </variablelist>
73
74 <para>This package does not come with a test suite.</para>
75
76 <para>Install the package:</para>
77
78<screen><userinput remap="install">make install</userinput></screen>
79
80 <para>Now move the dynamic libraries to a more appropriate location
81 and fix up some symbolic links:</para>
82
83<screen><userinput remap="install">mv -v /usr/lib/lib{readline,history}.so.* /lib
84ln -sfv ../../lib/$(readlink /usr/lib/libreadline.so) /usr/lib/libreadline.so
85ln -sfv ../../lib/$(readlink /usr/lib/libhistory.so ) /usr/lib/libhistory.so</userinput></screen>
86
87 <para>If desired, install the documentation:</para>
88
89<screen><userinput remap="install">install -v -m644 doc/*.{ps,pdf,html,dvi} /usr/share/doc/readline-&readline-version;</userinput></screen>
90
91 </sect2>
92
93 <sect2 id="contents-readline" role="content">
94 <title>Contents of Readline</title>
95
96 <segmentedlist>
97 <segtitle>Installed libraries</segtitle>
98 <segtitle>Installed directories</segtitle>
99
100 <seglistitem>
101 <seg>libhistory.{a,so}, and libreadline.{a,so}</seg>
102 <seg>/usr/include/readline, /usr/share/readline,
103 /usr/share/doc/readline-&readline-version;</seg>
104 </seglistitem>
105 </segmentedlist>
106
107 <variablelist>
108 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
109 <?dbfo list-presentation="list"?>
110 <?dbhtml list-presentation="table"?>
111
112 <varlistentry id="libhistory">
113 <term><filename class="libraryfile">libhistory</filename></term>
114 <listitem>
115 <para>Provides a consistent user interface for recalling lines
116 of history</para>
117 <indexterm zone="ch-system-readline libhistory">
118 <primary sortas="c-libhistory">libhistory</primary>
119 </indexterm>
120 </listitem>
121 </varlistentry>
122
123 <varlistentry id="libreadline">
124 <term><filename class="libraryfile">libreadline</filename></term>
125 <listitem>
126 <para>Aids in the consistency of user interface across discrete
127 programs that need to provide a command line interface</para>
128 <indexterm zone="ch-system-readline libreadline">
129 <primary sortas="c-libreadline">libreadline</primary>
130 </indexterm>
131 </listitem>
132 </varlistentry>
133
134 </variablelist>
135
136 </sect2>
137
138</sect1>
Note: See TracBrowser for help on using the repository browser.