Changeset f6810d4 for chapter06


Ignore:
Timestamp:
05/27/2002 03:17:49 AM (22 years ago)
Author:
Gerard Beekmans <gerard@…>
Branches:
10.0, 10.0-rc1, 10.1, 10.1-rc1, 11.0, 11.0-rc1, 11.0-rc2, 11.0-rc3, 11.1, 11.1-rc1, 11.2, 11.2-rc1, 11.3, 11.3-rc1, 12.0, 12.0-rc1, 12.1, 12.1-rc1, 6.0, 6.1, 6.1.1, 6.3, 6.4, 6.5, 6.6, 6.7, 6.8, 7.0, 7.1, 7.2, 7.3, 7.4, 7.5, 7.5-systemd, 7.6, 7.6-systemd, 7.7, 7.7-systemd, 7.8, 7.8-systemd, 7.9, 7.9-systemd, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, arm, bdubbs/gcc13, ml-11.0, multilib, renodr/libudev-from-systemd, s6-init, trunk, v4_0, v4_1, v5_0, v5_1, v5_1_1, xry111/arm64, xry111/arm64-12.0, xry111/clfs-ng, xry111/lfs-next, xry111/loongarch, xry111/loongarch-12.0, xry111/loongarch-12.1, xry111/mips64el, xry111/pip3, xry111/rust-wip-20221008, xry111/update-glibc
Children:
43f167c
Parents:
69b8ba4
Message:

Upgraded to: automake-1.6.1, bin86-0.16.3, file-3.38, gawk-3.1.1, gcc-3.1, gettext-0.11.2, modutils-2.4.16, psmisc-21 and util-linux-2.11r. Added gcc-3.1 compile fix patches for ncurses, perl and vim

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

Location:
chapter06
Files:
1 added
1 deleted
10 edited

Legend:

Unmodified
Added
Removed
  • chapter06/file-inst.xml

    r69b8ba4 rf6810d4  
    44<para>Install File by running the following commands:</para>
    55
    6 <para><screen><userinput>touch aclocal.m4 configure Makefile.in stamp-h.in &amp;&amp;
    7 ./configure --prefix=/usr --datadir=/usr/share/misc &amp;&amp;
     6<para><screen><userinput>./configure --prefix=/usr --datadir=/usr/share/misc &amp;&amp;
    87make &amp;&amp;
    98make install</userinput></screen></para>
  • chapter06/file.xml

    r69b8ba4 rf6810d4  
    77
    88&c6-file-inst;
    9 &c6-file-exp;
    109&aa-file-desc;
    1110&aa-file-dep;
  • chapter06/findutils-inst.xml

    r69b8ba4 rf6810d4  
    88<para>Install Findutils by running the following commands:</para>
    99
    10 <para><screen><userinput>patch -Np1 -i ../findutils-4.1.patch &amp;&amp;
     10<para><screen><userinput>patch -Np1 -i ../findutils-&findutils-version;.patch &amp;&amp;
    1111./configure --prefix=/usr &amp;&amp;
    1212make libexecdir=/usr/bin &amp;&amp;
  • chapter06/gcc-inst.xml

    r69b8ba4 rf6810d4  
    2323who actively work on LFS.</para>
    2424
    25 <para><screen><userinput>patch -Np1 -i ../gcc-&gcc-patch-version;.patch &amp;&amp;
    26 mkdir ../gcc-build &amp;&amp;
     25<para><screen><userinput>mkdir ../gcc-build &amp;&amp;
    2726cd ../gcc-build &amp;&amp;
    2827../gcc-&gcc-version;/configure --prefix=/usr --enable-shared \
    29 &nbsp;&nbsp;&nbsp;&nbsp;--enable-languages=c,c++ --enable-threads=posix &amp;&amp;
     28&nbsp;&nbsp;&nbsp;&nbsp;--enable-languages=c,c++ --enable-threads=posix \
     29&nbsp;&nbsp;&nbsp;&nbsp;--with-slibdir=/lib &amp;&amp;
    3030make bootstrap &amp;&amp;
    3131make install &amp;&amp;
    3232ln -sf ../usr/bin/cpp /lib &amp;&amp;
    3333ln -sf ../bin/cpp /usr/lib &amp;&amp;
    34 ln -sf gcc /usr/bin/cc &amp;&amp;
    35 rmdir /usr/*-gnu/include &amp;&amp;
    36 rmdir /usr/*-gnu</userinput></screen></para>
     34ln -sf gcc /usr/bin/cc</userinput></screen></para>
    3735
    3836</sect2>
  • chapter06/ncurses-exp.xml

    r69b8ba4 rf6810d4  
    11<sect2>
    22<title>Command explanations</title>
     3
     4<para><userinput>patch -Np1 -i
     5../ncurses-&ncurses-version;-patch:</userinput> This patch fixes a compile
     6problem with GCC-3.1 because Ncurses uses constructions that are no longer
     7valid in the new C++ standard.</para>
    38
    49<para><userinput>--with-shared:</userinput> This enables the build of the
  • chapter06/ncurses-inst.xml

    r69b8ba4 rf6810d4  
    44<para>Install Ncurses by running the following commands:</para>
    55
    6 <para><screen><userinput>./configure --prefix=/usr --libdir=/lib \
     6<para><screen><userinput>patch -Np1 -i ../ncurses-&ncurses-version;-patch &amp;&amp;
     7./configure --prefix=/usr --libdir=/lib \
    78&nbsp;&nbsp;&nbsp;&nbsp;--with-shared --disable-termcap &amp;&amp;
    89make &amp;&amp;
  • chapter06/perl-inst.xml

    r69b8ba4 rf6810d4  
    44<para>Install Perl by running the following commands:</para>
    55
    6 <para><screen><userinput>./configure.gnu --prefix=/usr &amp;&amp;
     6<para><screen><userinput>patch -Np1 -i ../perl-&perl-version;.patch &amp;&amp;
     7./configure.gnu --prefix=/usr &amp;&amp;
    78make &amp;&amp;
    89make install</userinput></screen></para>
  • chapter06/perl.xml

    r69b8ba4 rf6810d4  
    77
    88&c6-perl-inst;
     9&c6-perl-exp;
    910&aa-perl-desc;
    1011&aa-perl-dep;
  • chapter06/vim-exp.xml

    r69b8ba4 rf6810d4  
    11<sect2>
    22<title>Command explanations</title>
     3
     4<para><userinput>patch -Np1 -i ../vim-&vim-version;.patch:</userinput> This
     5patch fixes a compile problem with GCC-3.1.</para>
    36
    47<para><userinput>make
  • chapter06/vim-inst.xml

    r69b8ba4 rf6810d4  
    1010<para>Install Vim by running the following commands:</para>
    1111
    12 <para><screen><userinput>./configure --prefix=/usr &amp;&amp;
     12<para><screen><userinput>patch -Np1 -i ../vim-&vim-version;.patch &amp;&amp;
     13./configure --prefix=/usr &amp;&amp;
    1314make CPPFLAGS=-DSYS_VIMRC_FILE=\\\"/etc/vimrc\\\" &amp;&amp;
    1415make install &amp;&amp;
Note: See TracChangeset for help on using the changeset viewer.