mirror of
https://git.linuxfromscratch.org/lfs.git
synced 2025-01-21 06:28:02 +00:00
7acb4c36e5
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2938 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
49 lines
1.6 KiB
XML
49 lines
1.6 KiB
XML
<sect2><title> </title><para> </para></sect2>
|
|
|
|
<sect2>
|
|
<title>Installation of Ncurses</title>
|
|
|
|
<para>First fix two tiny bugs:</para>
|
|
|
|
<para><screen><userinput>patch -Np1 -i ../&ncurses-etip-patch;
|
|
patch -Np1 -i ../&ncurses-vsscanf-patch;</userinput></screen></para>
|
|
|
|
<para>The first patch corrects the <filename>etip.h</filename> header file, and
|
|
the second patch prevents some compiler warnings on the use of deprecated
|
|
headers.</para>
|
|
|
|
<para>Now prepare Ncurses for compilation:</para>
|
|
|
|
<para><screen><userinput>./configure --prefix=/usr --with-shared \
|
|
--without-debug</userinput></screen></para>
|
|
|
|
<para>Compile the package:</para>
|
|
|
|
<para><screen><userinput>make</userinput></screen></para>
|
|
|
|
<para>Install the package:</para>
|
|
|
|
<para><screen><userinput>make install</userinput></screen></para>
|
|
|
|
<para>Give the Ncurses libraries execute permissions:</para>
|
|
|
|
<para><screen><userinput>chmod 755 /usr/lib/*.&ncurses-version;</userinput></screen></para>
|
|
|
|
<para>And fix a library that shouldn't be executable:</para>
|
|
|
|
<para><screen><userinput>chmod 644 /usr/lib/libncurses++.a</userinput></screen></para>
|
|
|
|
<para>Move the libraries to the <filename>/lib</filename> directory,
|
|
where they're expected to reside:</para>
|
|
|
|
<para><screen><userinput>mv /usr/lib/libncurses.so.5* /lib</userinput></screen></para>
|
|
|
|
<para>Since the libraries have been moved to
|
|
<filename>/lib</filename>, a few symlinks are currently pointing
|
|
towards non-existing files. Recreate those symlinks:</para>
|
|
|
|
<para><screen><userinput>ln -sf ../../lib/libncurses.so.5 /usr/lib/libncurses.so
|
|
ln -sf libncurses.so /usr/lib/libcurses.so</userinput></screen></para>
|
|
</sect2>
|
|
|