mirror of
https://git.linuxfromscratch.org/lfs.git
synced 2025-07-10 14:24:10 +01:00
Applied Zack's ncurses patch
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2596 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
This commit is contained in:
parent
6548fcc966
commit
e4f5f0466a
@ -74,6 +74,11 @@
|
|||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
</para></listitem>
|
</para></listitem>
|
||||||
|
|
||||||
|
<listitem><para>May 12th, 2003 [winkie]: Chapter 05 & 06 - Installing
|
||||||
|
Ncurses: In Chapter 6, symlink creation has been updated to include
|
||||||
|
libcurses.*, and libncurses++.a has it's properties changed to 644.
|
||||||
|
Chapter 5 doesn't need any libcurses.* so those are removed.</para></listitem>
|
||||||
|
|
||||||
<listitem><para>May 12th, 2003 [gerard]: Chapter 06 - Basic Network: Added
|
<listitem><para>May 12th, 2003 [gerard]: Chapter 06 - Basic Network: Added
|
||||||
$(hostname) to /etc/hosts, without it Perl's hostname test doesn't
|
$(hostname) to /etc/hosts, without it Perl's hostname test doesn't
|
||||||
pass.</para></listitem>
|
pass.</para></listitem>
|
||||||
|
@ -5,12 +5,10 @@
|
|||||||
|
|
||||||
<para><screen><userinput>patch -Np1 -i ../ncurses-&ncurses-version;-etip-2.patch
|
<para><screen><userinput>patch -Np1 -i ../ncurses-&ncurses-version;-etip-2.patch
|
||||||
patch -Np1 -i ../ncurses-&ncurses-version;-vsscanf.patch
|
patch -Np1 -i ../ncurses-&ncurses-version;-vsscanf.patch
|
||||||
./configure --prefix=/stage1 --with-shared --without-debug --without-ada &&
|
./configure --prefix=/stage1 --with-shared --without-debug \
|
||||||
make &&
|
--without-ada
|
||||||
|
make
|
||||||
make install
|
make install
|
||||||
chmod 755 /stage1/lib/*.5.3 &&
|
chmod 755 /stage1/lib/*.5.3</userinput></screen></para>
|
||||||
ln -s libncurses.a /stage1/lib/libcurses.a
|
|
||||||
ln -sf /stage1/lib/libncurses.so.5 /stage1/lib/libcurses.so</userinput></screen></para>
|
|
||||||
|
|
||||||
</sect2>
|
</sect2>
|
||||||
|
|
||||||
|
@ -22,6 +22,10 @@
|
|||||||
|
|
||||||
<para><screen><userinput>chmod 755 /usr/lib/*.&ncurses-version;</userinput></screen></para>
|
<para><screen><userinput>chmod 755 /usr/lib/*.&ncurses-version;</userinput></screen></para>
|
||||||
|
|
||||||
|
<para>And fix up a library that shouldn't be executable at all:</para>
|
||||||
|
|
||||||
|
<para><screen><userinput>chmod 644 /usr/lib/libncurses++.a</userinput></screen></para>
|
||||||
|
|
||||||
<para>Move the libraries to the <filename>/lib</filename> directory,
|
<para>Move the libraries to the <filename>/lib</filename> directory,
|
||||||
where they're expected to reside:</para>
|
where they're expected to reside:</para>
|
||||||
|
|
||||||
@ -31,7 +35,8 @@ where they're expected to reside:</para>
|
|||||||
<filename>/lib</filename>, a few symlinks are currently pointing
|
<filename>/lib</filename>, a few symlinks are currently pointing
|
||||||
towards non-existing files. Recreate those symlinks:</para>
|
towards non-existing files. Recreate those symlinks:</para>
|
||||||
|
|
||||||
<para><screen><userinput>ln -sf ../../lib/libncurses.so.5 /usr/lib/libncurses.so &&
|
<para><screen><userinput>ln -sf ../../lib/libncurses.so.5 /usr/lib/libncurses.so
|
||||||
ln -sf libncurses.so /usr/lib/libcurses.so</userinput></screen></para>
|
ln -s libncurses.a /usr/lib/libcurses.a
|
||||||
|
ln -s libncurses.so /usr/lib/libcurses.so</userinput></screen></para>
|
||||||
</sect2>
|
</sect2>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user