Changeset 374259a0 for chapter06


Ignore:
Timestamp:
10/07/2011 07:16:12 PM (13 years ago)
Author:
Matthew Burgess <matthew@…>
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, 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, 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:
3fffa40
Parents:
81060b6
Message:

Remove Pkg-Config and its dependencies PCRE and Glib. Glib's dependencies are becoming too heavyweight for LFS to be incorporating.

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

Location:
chapter06
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • chapter06/chapter06.xml

    r81060b6 r374259a0  
    3131  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="sed.xml"/>
    3232  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="bzip2.xml"/>
    33   <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="pcre.xml"/>
    34   <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="glib.xml"/>
    35   <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="pkg-config.xml"/>
    3633  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="ncurses.xml"/>
    3734  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="util-linux.xml"/>
  • chapter06/e2fsprogs.xml

    r81060b6 r374259a0  
    5353    <para>Prepare E2fsprogs for compilation:</para>
    5454
    55 <screen><userinput remap="configure">../configure --prefix=/usr --with-root-prefix="" \
     55<screen><userinput remap="configure">PKG_CONFIG=/tools/bin/true LDFLAGS=-lblkid \
     56    ../configure --prefix=/usr --with-root-prefix="" \
    5657    --enable-elf-shlibs --disable-libblkid --disable-libuuid \
    5758    --disable-uuidd --disable-fsck</userinput></screen>
     
    5960    <variablelist>
    6061      <title>The meaning of the configure options:</title>
     62
     63      <varlistentry>
     64        <term><parameter>PKG_CONFIG...</parameter></term>
     65        <listitem>
     66          <para>This enables E2fsprogs to be built without requiring Pkg-config
     67          to be built and installed first.</para>
     68        </listitem>
     69      </varlistentry>
    6170
    6271      <varlistentry>
  • chapter06/man-db.xml

    r81060b6 r374259a0  
    4444    <para>Prepare Man-DB for compilation:</para>
    4545
    46 <screen><userinput remap="configure">./configure --prefix=/usr --libexecdir=/usr/lib \
     46<screen><userinput remap="configure">libpipeline_CFLAGS='' libpipeline_LIBS='-lpipeline' \
     47    ./configure --prefix=/usr --libexecdir=/usr/lib \
    4748    --docdir=/usr/share/doc/man-db-&man-db-version; --sysconfdir=/etc \
    4849    --disable-setuid --with-browser=/usr/bin/lynx \
  • chapter06/udev.xml

    r81060b6 r374259a0  
    7272    --with-rootlibdir=/lib --libexecdir=/lib/udev \
    7373    --disable-hwdb --disable-introspection \
    74     --disable-keymap</userinput></screen>
     74    --disable-keymap --disable-gudev</userinput></screen>
    7575
    7676    <variablelist>
Note: See TracChangeset for help on using the changeset viewer.