mirror of
https://git.linuxfromscratch.org/lfs.git
synced 2025-01-18 21:17:38 +00:00
3f0c882398
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@4446 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
65 lines
1.9 KiB
XML
65 lines
1.9 KiB
XML
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
|
|
<!ENTITY % general-entities SYSTEM "../general.ent">
|
|
%general-entities;
|
|
]>
|
|
<sect1 id="ch-system-readline" xreflabel="Readline" role="wrap">
|
|
<title>Readline-&readline-version;</title>
|
|
<?dbhtml filename="readline.html"?>
|
|
|
|
<indexterm zone="ch-system-readline"><primary sortas="a-Readline">Readline</primary></indexterm>
|
|
|
|
<sect2 role="package"><title/>
|
|
|
|
<segmentedlist>
|
|
<segtitle>&buildtime;</segtitle>
|
|
<segtitle>&diskspace;</segtitle>
|
|
<seglistitem><seg>XXX SBU</seg><seg>3.8 MB</seg></seglistitem>
|
|
</segmentedlist>
|
|
|
|
</sect2>
|
|
|
|
<sect2 role="installation">
|
|
<title>Installation of Readline</title>
|
|
|
|
<para>Apply a patch.</para>
|
|
|
|
<screen><userinput>patch -Np1 -i ../readline-&readline-version;-fixes-1.patch</userinput></screen>
|
|
|
|
<para>Prepare Readline for compilation:</para>
|
|
|
|
<screen><userinput>./configure --prefix=/usr --libdir=/lib</userinput></screen>
|
|
|
|
<para>Compile the package:</para>
|
|
|
|
<screen><userinput>make SHLIB_XLDFLAGS=-lncurses</userinput></screen>
|
|
|
|
<para>Install the package:</para>
|
|
|
|
<screen><userinput>make install</userinput></screen>
|
|
|
|
<para>Give Readline's dynamic libraries to a more appropriate permissions:</para>
|
|
|
|
<screen><userinput>chmod 755 /lib/lib{readline,history}.so*</userinput></screen>
|
|
|
|
<para>Now we move the static libraries to a more appropriate location:</para>
|
|
|
|
<screen><userinput>mv /lib/lib{readline,history}.a /usr/lib</userinput></screen>
|
|
|
|
<para>Now we will remove the old, .so files in /lib and relink them into /usr/lib.</para>
|
|
|
|
<screen><userinput>rm /lib/lib{readline,history}.so
|
|
ln -sf ../../lib/libreadline.so.5 /usr/lib/libreadline.so
|
|
ln -sf ../../lib/libhistory.so.5 /usr/lib/libhistory.so</userinput></screen>
|
|
</sect2>
|
|
|
|
|
|
<sect2 id="contents-readline" role="content"><title>Contents of Readline</title>
|
|
|
|
<para>See testing</para>
|
|
|
|
</sect2>
|
|
|
|
|
|
</sect1>
|