diff options
-rw-r--r-- | chapter01/changelog.xml | 25 | ||||
-rw-r--r-- | chapter01/whatsnew.xml | 4 | ||||
-rw-r--r-- | chapter06/bc.xml | 8 | ||||
-rw-r--r-- | chapter06/chapter06.xml | 2 | ||||
-rw-r--r-- | chapter06/perl.xml | 10 | ||||
-rw-r--r-- | chapter06/readline.xml | 9 | ||||
-rw-r--r-- | general.ent | 6 | ||||
-rw-r--r-- | packages.ent | 16 |
8 files changed, 60 insertions, 20 deletions
diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml index dd1206dde..687dc29a9 100644 --- a/chapter01/changelog.xml +++ b/chapter01/changelog.xml @@ -43,6 +43,31 @@ appropriate for the entry or if needed the entire day's listitem. --> <listitem> + <para>2017-03-28</para> + <itemizedlist> + <listitem> + <para>[bdubbs] - Move realline to be before bc in Cahpater 6. Fixes + <ulink url="&lfs-ticket-root;4068">#4068</ulink>.</para> + </listitem> + <listitem> + <para>[bdubbs] - Update to linux-4.10.6. Fixes + <ulink url="&lfs-ticket-root;4065">#4065</ulink>.</para> + </listitem> + <listitem> + <para>[bdubbs] - Update to pkg-config-0.29.2. Fixes + <ulink url="&lfs-ticket-root;4066">#4066</ulink>.</para> + </listitem> + <listitem> + <para>[bdubbs] - Update to tzdata-2017b. Fixes + <ulink url="&lfs-ticket-root;4067">#4067</ulink>.</para> + </listitem> + <listitem> + <para>[bdubbs] - Add option -Dusethreads to perl in Chapter 6.</para> + </listitem> + </itemizedlist> + </listitem> + + <listitem> <para>2017-03-25</para> <itemizedlist> <listitem> diff --git a/chapter01/whatsnew.xml b/chapter01/whatsnew.xml index 5231d4e9a..461ce2674 100644 --- a/chapter01/whatsnew.xml +++ b/chapter01/whatsnew.xml @@ -182,9 +182,9 @@ <!--<listitem> <para>Perl &perl-version;</para> </listitem>--> - <!--<listitem> + <listitem> <para>Pkg-config &pkgconfig-version;</para> - </listitem>--> + </listitem> <!--<listitem> <para>Procps-ng &procps-ng-version;</para> </listitem>--> diff --git a/chapter06/bc.xml b/chapter06/bc.xml index 7f9373e52..31794bb80 100644 --- a/chapter06/bc.xml +++ b/chapter06/bc.xml @@ -45,6 +45,14 @@ <screen><userinput remap="pre">patch -Np1 -i ../&bc-memory-leak-patch;</userinput></screen> + <para>Create a temporary symbolic link so the package can find + the readline library and confirm that its required libncurses + library is available. Even though the libraries are in /tools/lib + at this point, the system will use /usr/lib at the end of + this chapter.</para> + +<screen><userinput remap="pre">ln -sv /tools/lib/libncursesw.so /usr/lib/libncurses.so</userinput></screen> + <para>Prepare Bc for compilation:</para> <screen><userinput remap="configure">./configure --prefix=/usr \ diff --git a/chapter06/chapter06.xml b/chapter06/chapter06.xml index f48b1ee62..8f4a8f46f 100644 --- a/chapter06/chapter06.xml +++ b/chapter06/chapter06.xml @@ -23,6 +23,7 @@ <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="adjusting.xml"/> <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="zlib.xml"/> <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="file.xml"/> + <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="readline.xml"/> <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="m4.xml"/> <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="bc.xml"/> <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="binutils.xml"/> @@ -43,7 +44,6 @@ <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="bison.xml"/> <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="flex.xml"/> <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="grep.xml"/> - <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="readline.xml"/> <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="bash.xml"/> <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="libtool.xml"/> <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="gdbm.xml"/> diff --git a/chapter06/perl.xml b/chapter06/perl.xml index 76b0af2cf..cf1b1b2b2 100644 --- a/chapter06/perl.xml +++ b/chapter06/perl.xml @@ -71,7 +71,8 @@ export BUILD_BZIP2=0</userinput></screen> -Dman1dir=/usr/share/man/man1 \ -Dman3dir=/usr/share/man/man3 \ -Dpager="/usr/bin/less -isR" \ - -Duseshrplib</userinput></screen> + -Duseshrplib \ + -Dusethreads</userinput></screen> <variablelist> <title>The meaning of the configure options:</title> @@ -109,6 +110,13 @@ export BUILD_BZIP2=0</userinput></screen> </listitem> </varlistentry> + <varlistentry> + <term><parameter>-Dusethreads</parameter></term> + <listitem> + <para>Build perl with support for threads.</para> + </listitem> + </varlistentry> + </variablelist> <para>Compile the package:</para> diff --git a/chapter06/readline.xml b/chapter06/readline.xml index 98be029db..d7f27b334 100644 --- a/chapter06/readline.xml +++ b/chapter06/readline.xml @@ -57,17 +57,16 @@ sed -i '/{OLDSUFF}/c:' support/shlib-install</userinput></screen> <para>Compile the package:</para> -<screen><userinput remap="make">make SHLIB_LIBS=-lncurses</userinput></screen> +<screen><userinput remap="make">make SHLIB_LIBS="-L/tools/lib -lncursesw"</userinput></screen> <variablelist> <title>The meaning of the make option:</title> <varlistentry> - <term><parameter>SHLIB_LIBS=-lncurses</parameter></term> + <term><parameter>SHLIB_LIBS="-L/tools/lib -lncursesw"</parameter></term> <listitem> <para>This option forces Readline to link against the - <filename class="libraryfile">libncurses</filename> (really, - <filename class="libraryfile">libncursesw</filename>) library.</para> + <filename class="libraryfile">libncursesw</filename> library.</para> </listitem> </varlistentry> @@ -77,7 +76,7 @@ sed -i '/{OLDSUFF}/c:' support/shlib-install</userinput></screen> <para>Install the package:</para> -<screen><userinput remap="install">make SHLIB_LIBS=-lncurses install</userinput></screen> +<screen><userinput remap="install">make SHLIB_LIBS="-L/tools/lib -lncurses" install</userinput></screen> <para>Now move the dynamic libraries to a more appropriate location and fix up some symbolic links:</para> diff --git a/general.ent b/general.ent index 8afce0f5a..4db180558 100644 --- a/general.ent +++ b/general.ent @@ -1,13 +1,13 @@ -<!ENTITY version "SVN-20170325"> +<!ENTITY version "SVN-20170328"> <!ENTITY short-version "svn"> <!-- Used below in &blfs-book; Change to x.y for release but not -rc releases --> <!ENTITY generic-version "development"> <!-- Use "development" or "x.y[-pre{x}]" --> -<!ENTITY versiond "20170325-systemd"> +<!ENTITY versiond "20170328-systemd"> <!ENTITY short-versiond "systemd"> <!ENTITY generic-versiond "systemd"> -<!ENTITY releasedate "March 25, 2017"> +<!ENTITY releasedate "March 28, 2017"> <!ENTITY copyrightdate "1999-2017"><!-- jhalfs needs a literal dash, not – --> <!ENTITY milestone "8.1"> diff --git a/packages.ent b/packages.ent index 71fa78d83..938bc1b2d 100644 --- a/packages.ent +++ b/packages.ent @@ -392,12 +392,12 @@ <!ENTITY linux-major-version "4"> <!ENTITY linux-minor-version "10"> -<!ENTITY linux-patch-version "3"> +<!ENTITY linux-patch-version "6"> <!--<!ENTITY linux-version "&linux-major-version;.&linux-minor-version;">--> <!ENTITY linux-version "&linux-major-version;.&linux-minor-version;.&linux-patch-version;"> -<!ENTITY linux-size "92,013 KB"> +<!ENTITY linux-size "92,028 KB"> <!ENTITY linux-url "&kernel;linux/kernel/v&linux-major-version;.x/linux-&linux-version;.tar.xz"> -<!ENTITY linux-md5 "626292ab8b495e81efe6ee45baf6b817"> +<!ENTITY linux-md5 "a5b0265cdb915aaf40d235224beb5b9d"> <!ENTITY linux-home "http://www.kernel.org/"> <!-- measured for 4.8.3 / gcc-6.2.0 on x86_64 : minimum is allnoconfig extended for a hopefully-bootable build on desktop machine, @@ -492,10 +492,10 @@ <!ENTITY perl-ch6-du "245 MB"> <!ENTITY perl-ch6-sbu "5.9 SBU"> -<!ENTITY pkgconfig-version "0.29.1"> -<!ENTITY pkgconfig-size "1,967 KB"> +<!ENTITY pkgconfig-version "0.29.2"> +<!ENTITY pkgconfig-size "1,970 KB"> <!ENTITY pkgconfig-url "https://pkg-config.freedesktop.org/releases/pkg-config-&pkgconfig-version;.tar.gz"> -<!ENTITY pkgconfig-md5 "f739a28cae4e0ca291f82d1d41ef107d"> +<!ENTITY pkgconfig-md5 "f6e931e319531b736fadc017f470e68a"> <!ENTITY pkgconfig-home "http://www.freedesktop.org/wiki/Software/pkg-config"> <!ENTITY pkgconfig-ch6-du "28 MB"> <!ENTITY pkgconfig-ch6-sbu "0.4 SBU"> @@ -595,10 +595,10 @@ <!ENTITY texinfo-ch6-du "108 MB"> <!ENTITY texinfo-ch6-sbu "0.5 SBU"> -<!ENTITY tzdata-version "2017a"> +<!ENTITY tzdata-version "2017b"> <!ENTITY tzdata-size "317 KB"> <!ENTITY tzdata-url "http://www.iana.org/time-zones/repository/releases/tzdata&tzdata-version;.tar.gz"> -<!ENTITY tzdata-md5 "cb8274cd175f8a4d9d1b89895df876dc"> +<!ENTITY tzdata-md5 "50dc0dc50c68644c1f70804f2e7a1625"> <!ENTITY tzdata-home "http://www.iana.org/time-zones"> <!ENTITY udev-lfs-version "udev-lfs-20140408"> |