Changeset b175687


Ignore:
Timestamp:
05/11/2003 07:12:19 PM (21 years ago)
Author:
Timothy Bauscher <timothy@…>
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, 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:
72b8e89c
Parents:
b3b1237
Message:

More from Zack: Ncurses symlinks fixes, procps removal of XSCPT=, --without-debug for ncurses.

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

Files:
1 added
9 edited

Legend:

Unmodified
Added
Removed
  • README

    rb3b1237 rb175687  
    1010that directory. Now run:
    1111
    12         mkdir -p chapter0{1,2,3,4,5,6,7,8,9} preface appendix{a,b} &&
     12        mkdir -p chapter0{1,2,3,4,5,6,7,8,9} preface appendixa &&
    1313        /usr/bin/openjade -t xml \
    1414                -d /usr/share/dsssl/docbook/html/lfs.dsl \
  • chapter01/changelog.xml

    rb3b1237 rb175687  
    6969</para></listitem>
    7070
     71<listitem><para>May 11th, 2003 [winkie]: Chapter 06 - Installing Ncurses:
     72Fix up the symlinks so that they follow suit of other library symlinks.
     73No more weirdness here.</para></listitem>
     74
     75<listitem><para>May 11th, 2003 [winkie]: Chapter 06 - Installing Procps:
     76Removed XSCPT="" cruft and it's corresponding paragraph. This stuff
     77isn't needed anymore.</para></listitem>
     78
     79<listitem><para>May 11th, 2003 [winkie]: Chapter 06 - Installing Ncurses:
     80Pass --without-debug to the configure script. It seems to have gotten
     81lost at some point.</para></listitem>
     82
    7183<listitem><para>May 11th, 2003 [timothy]: Chapter 5 &amp; 6 - Installing
    7284Bzip2, Installing Zlib: Modified build commands per bug #524.</para></listitem>
  • chapter04/coreutils-patch.xml

    rb3b1237 rb175687  
    1 Coreutils Patch (&coreutils-patch-version;) - &coreutils-patch-size;:
    2 <ulink url="&ftp;/coreutils-&coreutils-patch-version;.patch"/>
    3 <ulink url="&http;/coreutils-&coreutils-patch-version;.patch"/>
     1Coreutils Uname Patch (&coreutils-uname-patch-version;) - &coreutils-uname-patch-size;:
     2<ulink url="&ftp;/coreutils-&coreutils-uname-patch-version;.patch"/>
     3<ulink url="&http;/coreutils-&coreutils-uname-patch-version;.patch"/>
     4
     5Coreutils Hostname Patch (&coreutils-hostname-patch-version;) - &coreutils-hostname-patch-size;:
     6<ulink url="&ftp;/coreutils-&coreutils-hostname-patch-version;.patch"/>
     7<ulink url="&http;/coreutils-&coreutils-hostname-patch-version;.patch"/>
  • chapter04/gcc.xml

    rb3b1237 rb175687  
    11GCC (&gcc-version;) - &gcc-core-size;:
    22<ulink url="http://freshmeat.net/projects/gcc/"/>
    3 
    4 GCC Specs Patch:
    5 <ulink url="&http;/gcc-3.2.3-specs-3.patch"/>
    6 
    7 GCC MMap Test Patch:
    8 <ulink url="&http;/gcc-3.2.3-mmap_test.patch"/>
    9 
    10 GCC No Fixincludes Patch:
    11 <ulink url="&http;/gcc-3.2.3-no_fixincludes.patch"/>
  • chapter04/packages.xml

    rb3b1237 rb175687  
    3030&c4-gawk-patch;
    3131&c4-gcc;
     32&c4-gcc-patch;
    3233&c4-gcc-2953;
    3334&c4-gettext;
  • chapter06/coreutils-inst.xml

    rb3b1237 rb175687  
    55
    66<para>Normally the functionality of uname is somewhat broken, in that
    7 the -p switch always returns "unknown". This patch fixes that behaviour:</para>
     7the -p switch always returns "unknown". This patch fixes that behaviour
     8for Intel architectures:</para>
    89
    9 <para><screen><userinput>patch -Np1 -i ../coreutils-&coreutils-patch-version;.patch</userinput></screen></para>
     10<para><screen><userinput>patch -Np1 -i ../coreutils-&coreutils-uname-patch-version;.patch</userinput></screen></para>
     11
     12<para>We do not want Coreutils to install it's version of the hostname
     13binary, because it is inferior to the version provided by Net-tools.
     14Prevent the installation of hostname with this patch:</para>
     15
     16<para><screen><userinput>patch -Np1 -i ../coreutils-&coreutils-hostname-patch-version;.patch</userinput></screen></para>
    1017
    1118<para>Prepare Coreutils to be compiled:</para>
  • chapter06/ncurses-inst.xml

    rb3b1237 rb175687  
    88<para>Prepare Ncurses to be compiled:</para>
    99
    10 <para><screen><userinput>./configure --prefix=/usr --with-shared</userinput></screen></para>
     10<para><screen><userinput>./configure --prefix=/usr --with-shared &amp;&amp;
     11&nbsp;&nbsp;&nbsp;&nbsp;--without-debug</userinput></screen></para>
    1112
    1213<para>Continue with compiling the package:</para>
     
    3132towards non-existing files. Recreate those symlinks:</para>
    3233
    33 <para><screen><userinput>ln -sf libncurses.a /usr/lib/libcurses.a &amp;&amp;
    34 ln -sf ../../lib/libncurses.so.5 /usr/lib/libncurses.so &amp;&amp;
    35 ln -sf ../../lib/libncurses.so.5 /usr/lib/libcurses.so</userinput></screen></para>
     34<para><screen><userinput>ln -sf ../../lib/libncurses.so.5 /usr/lib/libncurses.so &amp;&amp;
     35ln -sf libncurses.so /usr/lib/libcurses.so</userinput></screen></para>
    3636</sect2>
    3737
  • chapter06/procps-inst.xml

    rb3b1237 rb175687  
    1717<para>Finish installing the package:</para>
    1818
    19 <para><screen><userinput>make XSCPT="" install</userinput></screen></para>
    20 
    21 <para>The <emphasis>XSCPT</emphasis> option will set the Makefile
    22 variable XSCPT to an empty value so that XConsole installation is
    23 disabled. Otherwise, <userinput>make install</userinput> tries to
    24 copy the file XConsole to /usr/X11R6/lib/X11/app-defaults. That
    25 directory does not exist because X is not installed.</para>
     19<para><screen><userinput>make install</userinput></screen></para>
    2620
    2721</sect2>
  • entities/coreutils.ent

    rb3b1237 rb175687  
    2020<!ENTITY coreutils-dir "coreutils-&coreutils-version;">
    2121<!ENTITY coreutils-package "coreutils-&coreutils-version;.tar.bz2">
    22 <!ENTITY coreutils-patch-size "1 KB">
    23 <!ENTITY coreutils-patch-version "5.0-uname">
     22<!ENTITY coreutils-uname-patch-size "1 KB">
     23<!ENTITY coreutils-uname-patch-version "5.0-uname">
     24<!ENTITY coreutils-hostname-patch-size "1 KB">
     25<!ENTITY coreutils-hostname-patch-version "5.0-hostname">
    2426
    2527<!ENTITY coreutils-compsize-static "17 MB">
Note: See TracChangeset for help on using the changeset viewer.