Changeset 1e472fb


Ignore:
Timestamp:
03/29/2017 02:13:40 AM (7 years ago)
Author:
Bruce Dubbs <bdubbs@…>
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, 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:
15f0f21
Parents:
c9ac649
Message:

Move realline to be before bc in Cahpater 6.
Update to linux-4.10.6.
Update to pkg-config-0.29.2.
Update to tzdata-2017b.
Add option -Dusethreads to perl in Chapter 6.

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

Files:
8 edited

Legend:

Unmodified
Added
Removed
  • chapter01/changelog.xml

    rc9ac649 r1e472fb  
    4343    appropriate for the entry or if needed the entire day's listitem.
    4444-->
     45    <listitem>
     46      <para>2017-03-28</para>
     47      <itemizedlist>
     48        <listitem>
     49          <para>[bdubbs] - Move realline to be before bc in Cahpater 6. Fixes
     50          <ulink url="&lfs-ticket-root;4068">#4068</ulink>.</para>
     51        </listitem>
     52        <listitem>
     53          <para>[bdubbs] - Update to linux-4.10.6. Fixes
     54          <ulink url="&lfs-ticket-root;4065">#4065</ulink>.</para>
     55        </listitem>
     56        <listitem>
     57          <para>[bdubbs] - Update to pkg-config-0.29.2. Fixes
     58          <ulink url="&lfs-ticket-root;4066">#4066</ulink>.</para>
     59        </listitem>
     60        <listitem>
     61          <para>[bdubbs] - Update to tzdata-2017b. Fixes
     62          <ulink url="&lfs-ticket-root;4067">#4067</ulink>.</para>
     63        </listitem>
     64        <listitem>
     65          <para>[bdubbs] - Add option -Dusethreads to perl in Chapter 6.</para>
     66        </listitem>
     67      </itemizedlist>
     68    </listitem>
     69
    4570    <listitem>
    4671      <para>2017-03-25</para>
  • chapter01/whatsnew.xml

    rc9ac649 r1e472fb  
    183183      <para>Perl &perl-version;</para>
    184184    </listitem>-->
    185     <!--<listitem>
     185    <listitem>
    186186      <para>Pkg-config &pkgconfig-version;</para>
    187     </listitem>-->
     187    </listitem>
    188188    <!--<listitem>
    189189      <para>Procps-ng &procps-ng-version;</para>
  • chapter06/bc.xml

    rc9ac649 r1e472fb  
    4545
    4646<screen><userinput remap="pre">patch -Np1 -i ../&bc-memory-leak-patch;</userinput></screen>
     47
     48    <para>Create a temporary symbolic link so the package can find
     49    the readline library and confirm that its required libncurses
     50    library is available. Even though the libraries are in /tools/lib
     51    at this point, the system will use /usr/lib at the end of
     52    this chapter.</para>
     53
     54<screen><userinput remap="pre">ln -sv /tools/lib/libncursesw.so /usr/lib/libncurses.so</userinput></screen>
    4755
    4856    <para>Prepare Bc for compilation:</para>
  • chapter06/chapter06.xml

    rc9ac649 r1e472fb  
    2424  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="zlib.xml"/>
    2525  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="file.xml"/>
     26  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="readline.xml"/>
    2627  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="m4.xml"/>
    2728  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="bc.xml"/>
     
    4445  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="flex.xml"/>
    4546  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="grep.xml"/>
    46   <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="readline.xml"/>
    4747  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="bash.xml"/>
    4848  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="libtool.xml"/>
  • chapter06/perl.xml

    rc9ac649 r1e472fb  
    7272                  -Dman3dir=/usr/share/man/man3 \
    7373                  -Dpager="/usr/bin/less -isR"  \
    74                   -Duseshrplib</userinput></screen>
     74                  -Duseshrplib                  \
     75                  -Dusethreads</userinput></screen>
    7576
    7677    <variablelist>
     
    107108        <listitem>
    108109          <para>Build a shared libperl needed by some perl modules.</para>
     110        </listitem>
     111      </varlistentry>
     112
     113      <varlistentry>
     114        <term><parameter>-Dusethreads</parameter></term>
     115        <listitem>
     116          <para>Build perl with support for threads.</para>
    109117        </listitem>
    110118      </varlistentry>
  • chapter06/readline.xml

    rc9ac649 r1e472fb  
    5858    <para>Compile the package:</para>
    5959
    60 <screen><userinput remap="make">make SHLIB_LIBS=-lncurses</userinput></screen>
     60<screen><userinput remap="make">make SHLIB_LIBS="-L/tools/lib -lncursesw"</userinput></screen>
    6161
    6262    <variablelist>
     
    6464
    6565      <varlistentry>
    66         <term><parameter>SHLIB_LIBS=-lncurses</parameter></term>
     66        <term><parameter>SHLIB_LIBS="-L/tools/lib -lncursesw"</parameter></term>
    6767        <listitem>
    6868          <para>This option forces Readline to link against the
    69           <filename class="libraryfile">libncurses</filename> (really,
    70           <filename class="libraryfile">libncursesw</filename>) library.</para>
     69          <filename class="libraryfile">libncursesw</filename> library.</para>
    7170        </listitem>
    7271      </varlistentry>
     
    7877    <para>Install the package:</para>
    7978
    80 <screen><userinput remap="install">make SHLIB_LIBS=-lncurses install</userinput></screen>
     79<screen><userinput remap="install">make SHLIB_LIBS="-L/tools/lib -lncurses" install</userinput></screen>
    8180
    8281    <para>Now move the dynamic libraries to a more appropriate location
  • general.ent

    rc9ac649 r1e472fb  
    1 <!ENTITY version         "SVN-20170325">
     1<!ENTITY version         "SVN-20170328">
    22<!ENTITY short-version   "svn">  <!-- Used below in &blfs-book;
    33                                      Change to x.y for release but not -rc releases -->
    44<!ENTITY generic-version "development"> <!-- Use "development"  or "x.y[-pre{x}]" -->
    55
    6 <!ENTITY versiond        "20170325-systemd">
     6<!ENTITY versiond        "20170328-systemd">
    77<!ENTITY short-versiond  "systemd">
    88<!ENTITY generic-versiond "systemd">
    99
    10 <!ENTITY releasedate     "March 25, 2017">
     10<!ENTITY releasedate     "March 28, 2017">
    1111
    1212<!ENTITY copyrightdate   "1999-2017"><!-- jhalfs needs a literal dash, not &ndash; -->
  • packages.ent

    rc9ac649 r1e472fb  
    393393<!ENTITY linux-major-version "4">
    394394<!ENTITY linux-minor-version "10">
    395 <!ENTITY linux-patch-version "3">
     395<!ENTITY linux-patch-version "6">
    396396<!--<!ENTITY linux-version "&linux-major-version;.&linux-minor-version;">-->
    397397<!ENTITY linux-version "&linux-major-version;.&linux-minor-version;.&linux-patch-version;">
    398 <!ENTITY linux-size "92,013 KB">
     398<!ENTITY linux-size "92,028 KB">
    399399<!ENTITY linux-url "&kernel;linux/kernel/v&linux-major-version;.x/linux-&linux-version;.tar.xz">
    400 <!ENTITY linux-md5 "626292ab8b495e81efe6ee45baf6b817">
     400<!ENTITY linux-md5 "a5b0265cdb915aaf40d235224beb5b9d">
    401401<!ENTITY linux-home "http://www.kernel.org/">
    402402<!-- measured for 4.8.3 / gcc-6.2.0 on x86_64 : minimum is
     
    493493<!ENTITY perl-ch6-sbu "5.9 SBU">
    494494
    495 <!ENTITY pkgconfig-version "0.29.1">
    496 <!ENTITY pkgconfig-size "1,967 KB">
     495<!ENTITY pkgconfig-version "0.29.2">
     496<!ENTITY pkgconfig-size "1,970 KB">
    497497<!ENTITY pkgconfig-url "https://pkg-config.freedesktop.org/releases/pkg-config-&pkgconfig-version;.tar.gz">
    498 <!ENTITY pkgconfig-md5 "f739a28cae4e0ca291f82d1d41ef107d">
     498<!ENTITY pkgconfig-md5 "f6e931e319531b736fadc017f470e68a">
    499499<!ENTITY pkgconfig-home "http://www.freedesktop.org/wiki/Software/pkg-config">
    500500<!ENTITY pkgconfig-ch6-du "28 MB">
     
    596596<!ENTITY texinfo-ch6-sbu "0.5 SBU">
    597597
    598 <!ENTITY tzdata-version "2017a">
     598<!ENTITY tzdata-version "2017b">
    599599<!ENTITY tzdata-size "317 KB">
    600600<!ENTITY tzdata-url "http://www.iana.org/time-zones/repository/releases/tzdata&tzdata-version;.tar.gz">
    601 <!ENTITY tzdata-md5 "cb8274cd175f8a4d9d1b89895df876dc">
     601<!ENTITY tzdata-md5 "50dc0dc50c68644c1f70804f2e7a1625">
    602602<!ENTITY tzdata-home "http://www.iana.org/time-zones">
    603603
Note: See TracChangeset for help on using the changeset viewer.