diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2018-08-02 19:04:22 +0000 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2018-08-02 19:04:22 +0000 |
commit | efca30a736007825e0089a0dbfe8db3f1d98dc20 (patch) | |
tree | 0fd39c52dc4fb6ef09716083047f87b0a129481f /chapter06 | |
parent | 1f5b6137b780db07b43a4a21ccfe6290010a8b85 (diff) |
Update to glibc-2.28.
Update to gdbm-1.17.
Update to linux-4.17.11.
Update to man-db-2.8.4.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@11443 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06')
-rw-r--r-- | chapter06/findutils.xml | 6 | ||||
-rw-r--r-- | chapter06/glibc.xml | 5 | ||||
-rw-r--r-- | chapter06/gzip.xml | 5 | ||||
-rw-r--r-- | chapter06/m4.xml | 5 | ||||
-rw-r--r-- | chapter06/vim.xml | 2 |
5 files changed, 23 insertions, 0 deletions
diff --git a/chapter06/findutils.xml b/chapter06/findutils.xml index 151088d8d..31fc1d2ac 100644 --- a/chapter06/findutils.xml +++ b/chapter06/findutils.xml @@ -50,6 +50,12 @@ <screen><userinput remap="pre">sed -i 's/test-lock..EXEEXT.//' tests/Makefile.in</userinput></screen> + <para>Next, make some fixes required by glibc-2.28:</para> + +<screen><userinput remap="pre">sed -i 's/IO_ftrylockfile/IO_EOF_SEEN/' gl/lib/*.c +sed -i '/unistd/a #include <sys/sysmacros.h>' gl/lib/mountlist.c +echo "#define _IO_IN_BACKUP 0x100" >> gl/lib/stdio-impl.h</userinput></screen> + <para>Prepare Findutils for compilation:</para> <screen><userinput remap="configure">./configure --prefix=/usr --localstatedir=/var/lib/locate</userinput></screen> diff --git a/chapter06/glibc.xml b/chapter06/glibc.xml index 8c277a5dd..713fcd01d 100644 --- a/chapter06/glibc.xml +++ b/chapter06/glibc.xml @@ -165,6 +165,11 @@ unset GCC_INCDIR</userinput></screen> </listitem> <listitem> + <para><emphasis>inet/tst-idna_name_classify</emphasis> + is known to fail in the LFS chroot environment.</para> + </listitem> + + <listitem> <para><emphasis>posix/tst-getaddrinfo4</emphasis> and <emphasis>posix/tst-getaddrinfo5</emphasis> may fail on some architectures.</para> diff --git a/chapter06/gzip.xml b/chapter06/gzip.xml index 09eebbdf7..e8fb796fd 100644 --- a/chapter06/gzip.xml +++ b/chapter06/gzip.xml @@ -41,6 +41,11 @@ <sect2 role="installation"> <title>Installation of Gzip</title> + <para>First, make some fixes required by glibc-2.28:</para> + +<screen><userinput remap="pre">sed -i 's/IO_ftrylockfile/IO_EOF_SEEN/' lib/*.c +echo "#define _IO_IN_BACKUP 0x100" >> lib/stdio-impl.h</userinput></screen> + <para>Prepare Gzip for compilation:</para> <screen><userinput remap="configure">./configure --prefix=/usr</userinput></screen> diff --git a/chapter06/m4.xml b/chapter06/m4.xml index 9308347e6..7fe282ee7 100644 --- a/chapter06/m4.xml +++ b/chapter06/m4.xml @@ -40,6 +40,11 @@ <sect2 role="installation"> <title>Installation of M4</title> + <para>First, make some fixes required by glibc-2.28:</para> + +<screen><userinput remap="pre">sed -i 's/IO_ftrylockfile/IO_EOF_SEEN/' lib/*.c +echo "#define _IO_IN_BACKUP 0x100" >> lib/stdio-impl.h</userinput></screen> + <para>Prepare M4 for compilation:</para> <screen><userinput remap="configure">./configure --prefix=/usr</userinput></screen> diff --git a/chapter06/vim.xml b/chapter06/vim.xml index d3dbbdb57..084a600f2 100644 --- a/chapter06/vim.xml +++ b/chapter06/vim.xml @@ -76,6 +76,8 @@ successful test will result in the words "ALL DONE" in the log file at completion.</para> + <para>One test, Test_terminal_composing_unicode, is known to fail.</para> + <para>Install the package:</para> <screen><userinput remap="install">make install</userinput></screen> |