removed --disable-termcap from ncurses installation, it's disabled by default now

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2053 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
This commit is contained in:
Gerard Beekmans 2002-08-08 17:32:09 +00:00
parent ee41fd5577
commit 1c9bc6a47e
3 changed files with 6 additions and 5 deletions

View File

@ -49,6 +49,11 @@
</itemizedlist> </itemizedlist>
</para></listitem> </para></listitem>
<listitem><para>August 8th, 2002 [gerard]: Chapter 06 - Ncurses: removed
the <emphasis>--disable-termcap</emphasis> configure option. Termcap is
disabled by default now, so no need for this option (left over from a long
time ago when it was needed).</para></listitem>
<listitem><para>August 8th, 2002 [gerard]: Chapter 06 - Linux: Added the <listitem><para>August 8th, 2002 [gerard]: Chapter 06 - Linux: Added the
command <userinput>cp include/asm-generic /usr/include</userinput>. There command <userinput>cp include/asm-generic /usr/include</userinput>. There
are programs which use the files in there, as well as headers in the are programs which use the files in there, as well as headers in the

View File

@ -9,9 +9,6 @@ valid in the new C++ standard.</para>
<para><userinput>--with-shared:</userinput> This enables the build of the <para><userinput>--with-shared:</userinput> This enables the build of the
shared ncurses library files.</para> shared ncurses library files.</para>
<para><userinput>--disable-termcap:</userinput> Disabled the compilation of
termcap fall back support.</para>
<para><userinput>mv /lib/*.a /usr/lib :</userinput> This <para><userinput>mv /lib/*.a /usr/lib :</userinput> This
moves all of the static ncurses library files from /lib to /usr/lib. moves all of the static ncurses library files from /lib to /usr/lib.
/lib should only contain the shared files which are essential to the /lib should only contain the shared files which are essential to the

View File

@ -8,8 +8,7 @@ commands.</para>
<para>Install Ncurses by running the following commands:</para> <para>Install Ncurses by running the following commands:</para>
<para><screen><userinput>patch -Np1 -i ../ncurses-&ncurses-patch-version;.patch &amp;&amp; <para><screen><userinput>patch -Np1 -i ../ncurses-&ncurses-patch-version;.patch &amp;&amp;
./configure --prefix=/usr --libdir=/lib \ ./configure --prefix=/usr --libdir=/lib --with-shared &amp;&amp;
&nbsp;&nbsp;&nbsp;&nbsp;--with-shared --disable-termcap &amp;&amp;
make &amp;&amp; make &amp;&amp;
make install &amp;&amp; make install &amp;&amp;
mv /lib/*.a /usr/lib &amp;&amp; mv /lib/*.a /usr/lib &amp;&amp;