Changeset b88584a


Ignore:
Timestamp:
02/24/2017 06:42:12 PM (7 years ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
c942f7bd
Parents:
5e82e717
Message:

Remove lfs7a entities
Touch up some instructions and text.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@18403 af4574ff-66df-0310-9fd7-8a98e5e911e0

Files:
5 edited

Legend:

Unmodified
Added
Removed
  • general.ent

    r5e82e717 rb88584a  
    8989                              8.0 platform but has not been tested.</para>">
    9090
    91 <!ENTITY lfs7a_checked        "<para>This package is known to build and work
    92                               properly using an LFS-7.10 platform.</para>">
    93 <!ENTITY lfs7a_built          "<para>This package is known to build using an LFS
    94                               7.10 platform but has not been tested.</para>">
    95 
    9691<!ENTITY lfssvn_checked       "This package is known to build and work properly
    9792                               using an LFS-SVN-">
  • general/graphlib/libpng.xml

    r5e82e717 rb88584a  
    111111    </para>
    112112
    113 <screen><userinput>./configure --prefix=/usr --disable-static &amp;&amp;
     113<screen><userinput>LIBS=-lphtread ./configure --prefix=/usr --disable-static &amp;&amp;
    114114make</userinput></screen>
    115115
     
    130130  <sect2 role="commands">
    131131    <title>Command Explanations</title>
     132
     133    <para>
     134      <envar>LIBS=-lphtread</envar>: Ensure the libpthread library is
     135      used to allow parallelism on systems with multiple cores.
     136    </para>
    132137
    133138    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • networking/netutils/networkmanager.xml

    r5e82e717 rb88584a  
    288288
    289289<screen role="root"><userinput>groupadd -fg 86 netdev &amp;&amp;
    290 /sbin/usermod -a -G netdev <replaceable>&lt;username&gt;</replaceable>
     290/usr/sbin/usermod -a -G netdev <replaceable>&lt;username&gt;</replaceable>
    291291
    292292cat &gt; /usr/share/polkit-1/rules.d/org.freedesktop.NetworkManager.rules &lt;&lt; "EOF"
  • postlfs/security/openssl.xml

    r5e82e717 rb88584a  
    101101    <title>Installation of OpenSSL</title>
    102102
     103    <note>
     104      <para>
     105        This package does not support parallel build.
     106      </para>
     107    </note>
     108 
    103109    <para>
    104110      Install <application>OpenSSL</application> with the following commands:
    105111    </para>
    106112
    107 <!-- libdir=lib so it doesn't write over /usr/lib64 symlink on 64 bit system.
    108      Might break packaging. -->
    109 
    110 <!-- Parallel build for version 1.0.2d at -j8 works for me without the patch.
    111      But it only reduces build time from 1.0 to 0.7 SBU - Bruce
    112 
    113 <screen><userinput>patch -Np1 -i ../openssl-&openssl-version;-fix_parallel_build-1.patch &amp;&amp;-->
     113
    114114<screen><userinput>./config --prefix=/usr         \
    115115         --openssldir=/etc/ssl \
     
    118118         zlib-dynamic &amp;&amp;
    119119make depend           &amp;&amp;
    120 make</userinput></screen>
     120make -j1</userinput></screen>
    121121
    122122    <para>
  • pst/printing/cups.xml

    r5e82e717 rb88584a  
    223223
    224224
    225 <screen revision="sysv"><userinput>sed -i 's:555:755:g;s:444:644:g' Makedefs.in                                  &amp;&amp;
    226 sed -i '/MAN.EXT/s:.gz::g' configure config-scripts/cups-manpages.m4          &amp;&amp;
    227 sed -i '/LIBGCRYPTCONFIG/d' config-scripts/cups-ssl.m4                        &amp;&amp;
    228 <!--sed -i 's@else /\* HAVE_AVAHI \*/@elif defined(HAVE_AVAHI)@' test/ippserver.c &amp;&amp;
    229 -->
     225<screen revision="sysv"><userinput>sed -i 's:555:755:g;s:444:644:g' Makedefs.in                         &amp;&amp;
     226sed -i '/MAN.EXT/s:.gz::g' configure config-scripts/cups-manpages.m4 &amp;&amp;
     227sed -i '/LIBGCRYPTCONFIG/d' config-scripts/cups-ssl.m4               &amp;&amp;
     228
    230229aclocal  -I config-scripts &amp;&amp;
    231230autoconf -I config-scripts &amp;&amp;
Note: See TracChangeset for help on using the changeset viewer.