diff options
author | Jeremy Utley <jeremy@linuxfromscratch.org> | 2005-01-05 14:35:19 +0000 |
---|---|---|
committer | Jeremy Utley <jeremy@linuxfromscratch.org> | 2005-01-05 14:35:19 +0000 |
commit | 8a2465b814c6c38eb078b73d2df6a4de57bbbfe7 (patch) | |
tree | 730019529e1617af56cf25bfb5c1154a72dc9ccd | |
parent | ea66eb9277f06533a459c80cd76c35bc9c8d3502 (diff) |
Added --disable-selinux parameter to glibc chapter 5 - closes bug 1006
git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/testing/BOOK@4491 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r-- | chapter01/changelog.xml | 4 | ||||
-rw-r--r-- | chapter05/glibc.xml | 14 | ||||
-rw-r--r-- | general.ent | 4 |
3 files changed, 19 insertions, 3 deletions
diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml index dbed59aa3..251cd8fc5 100644 --- a/chapter01/changelog.xml +++ b/chapter01/changelog.xml @@ -63,6 +63,10 @@ first a summary, then a detailed log.</para> </itemizedlist> </listitem> +<listitem><para>January 5, 2005 [jeremy]: Added the --disable-selinux parameter +to Ch 5 glibc. Allows building from hosts which use SELinux functionality, +like Fedora Core 3</para></listitem> + <listitem><para>December 25, 2004 [jeremy]: Added text suggested by MSB, closing Bug 943</para></listitem> diff --git a/chapter05/glibc.xml b/chapter05/glibc.xml index 9599e87a7..9b8729c53 100644 --- a/chapter05/glibc.xml +++ b/chapter05/glibc.xml @@ -49,7 +49,8 @@ cd ../glibc-build</userinput></screen> <screen><userinput>../glibc-&glibc-version;/configure --prefix=/tools \ --disable-profile --enable-add-ons \ --enable-kernel=2.6.0 --with-binutils=/tools/bin \ - --without-gd --without-cvs --with-headers=/tools/include</userinput></screen> + --without-gd --without-cvs --with-headers=/tools/include \ + --disable-selinux</userinput></screen> <beginpage/> <para>The meaning of the configure options:</para> @@ -104,6 +105,17 @@ program.</para></listitem> installed to the tools directory, so that it knows exactly what features the kernel has and can optimize itself accordingly.</para></listitem> </varlistentry> + +<!-- Edit Me --> +<varlistentry> +<term><parameter>--disable-selinux</parameter></term> +<listitem><para>When building from hosts using SELinux functionality +(i.e. Fedora Core 3), glibc will try to integrate this functionality into +itself, but will fail, because we do not have this functionality in the LFS +tools enviornment. This option will disable this, allowing glibc to build +correctly, but will not otherwise affect the build.</para></listitem> +</varlistentry> +<!-- --> </variablelist> <beginpage/> diff --git a/general.ent b/general.ent index e3db53987..c6580ed09 100644 --- a/general.ent +++ b/general.ent @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="ISO-8859-1"?> -<!ENTITY version "6.1-testing-20041225"> -<!ENTITY releasedate "December 25, 2004"> +<!ENTITY version "6.1-testing-20050105"> +<!ENTITY releasedate "January 5, 2005"> <!ENTITY milestone "6.1"> <!ENTITY lfs-root "http://www.linuxfromscratch.org/"> |