[Clfs-commits] [Cross-LFS]Cross-LFS Book branch, master, updated. clfs-3.0.0-systemd-176-gca61efa

git git at clfs.org
Thu Oct 1 02:19:19 PDT 2015


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Cross-LFS Book".

The branch, master has been updated
       via  ca61efad5d8f618ec99fee9ea5190c4463d9bb18 (commit)
       via  878817254f1e9bc6138d4fdc183fd280e19befaa (commit)
       via  5201afa23ff3951c0befaf06f28e4eb5b1f2ac7c (commit)
      from  f947bbd3029434c185934bd6c96d4685b51a9f20 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit ca61efad5d8f618ec99fee9ea5190c4463d9bb18
Author: Chris Staub <chris at beaker67.com>
Date:   Thu Oct 1 05:19:05 2015 -0400

    No need for --without-shared for Ncurses

diff --git a/BOOK/cross-tools/common/ncurses.xml b/BOOK/cross-tools/common/ncurses.xml
index d275dd9..caf70e7 100644
--- a/BOOK/cross-tools/common/ncurses.xml
+++ b/BOOK/cross-tools/common/ncurses.xml
@@ -43,7 +43,7 @@
     <para os="a">Prepare Ncurses for compilation:</para>
 
 <screen os="b"><userinput>./configure --prefix=/cross-tools \
-    --without-debug --without-shared</userinput></screen>
+    --without-debug</userinput></screen>
 
     <variablelist os="b1">
       <title>The meaning of the new configure options:</title>
@@ -55,14 +55,6 @@
         </listitem>
       </varlistentry>
 
-      <varlistentry os="b2">
-        <term><parameter>--without-shared</parameter></term>
-        <listitem>
-          <para>This prevents Ncurses from building its shared libraries, which
-          are not needed at this time.</para>
-        </listitem>
-      </varlistentry>
-
     </variablelist>
 
     <para os="c">Only one binary is needed for the Cross-Tools. Build the
diff --git a/BOOK/introduction/common/changelog.xml b/BOOK/introduction/common/changelog.xml
index 7c5e25e..2fe1690 100644
--- a/BOOK/introduction/common/changelog.xml
+++ b/BOOK/introduction/common/changelog.xml
@@ -43,6 +43,10 @@
           <para>[Chris] - Removed unneeded --disable-static option from
           Cross-Tools File page, as that is now the default.</para>
         </listitem>
+        <listitem>
+          <para>[Chris] - Removed --without-shared option from
+          Cross-Tools Ncurses page, as that is the default.</para>
+        </listitem>
       </itemizedlist>
     </listitem>
 

commit 878817254f1e9bc6138d4fdc183fd280e19befaa
Author: Chris Staub <chris at beaker67.com>
Date:   Thu Oct 1 05:08:25 2015 -0400

    Updated date

diff --git a/BOOK/general.ent b/BOOK/general.ent
index 007be14..8bf4378 100644
--- a/BOOK/general.ent
+++ b/BOOK/general.ent
@@ -1,8 +1,8 @@
 <?xml version="1.0" encoding="ISO-8859-1"?>
 
-<!ENTITY month "09"> <!-- Use two digits -->
-<!ENTITY month_name "September">
-<!ENTITY day "22"> <!-- Use two digits -->
+<!ENTITY month "10"> <!-- Use two digits -->
+<!ENTITY month_name "October">
+<!ENTITY day "01"> <!-- Use two digits -->
 <!ENTITY year "2015"> <!-- Use four digits -->
 
 <!ENTITY releasedate "&month_name; &day;, &year;">

commit 5201afa23ff3951c0befaf06f28e4eb5b1f2ac7c
Author: Chris Staub <chris at beaker67.com>
Date:   Thu Oct 1 05:08:03 2015 -0400

    No need for --disable-static for File

diff --git a/BOOK/cross-tools/common/file.xml b/BOOK/cross-tools/common/file.xml
index de29a7c..0bc04e9 100644
--- a/BOOK/cross-tools/common/file.xml
+++ b/BOOK/cross-tools/common/file.xml
@@ -35,7 +35,7 @@
 
     <para>Prepare File for compilation:</para>
 
-<screen><userinput>./configure --prefix=/cross-tools --disable-static</userinput></screen>
+<screen><userinput>./configure --prefix=/cross-tools</userinput></screen>
 
     <variablelist>
       <title>The meaning of the configure options:</title>
@@ -49,14 +49,6 @@
         </listitem>
       </varlistentry>
 
-      <varlistentry>
-        <term><parameter>--disable-static</parameter></term>
-        <listitem>
-          <para>This tells the File package not to compile or install static
-          libraries, which are not needed for the Cross-Tools</para>
-        </listitem>
-      </varlistentry>
-
     </variablelist>
 
     <para>Compile the package:</para>
diff --git a/BOOK/cross-tools/common/gmp.xml b/BOOK/cross-tools/common/gmp.xml
index ab4d673..ace0d91 100644
--- a/BOOK/cross-tools/common/gmp.xml
+++ b/BOOK/cross-tools/common/gmp.xml
@@ -58,6 +58,14 @@
         </listitem>
       </varlistentry>
 
+      <varlistentry>
+        <term><parameter>--disable-static</parameter></term>
+        <listitem>
+          <para>This tells the GMP package not to compile or install static
+          libraries, which are not needed for the Cross-Tools</para>
+        </listitem>
+      </varlistentry>
+
     </variablelist>
 
     <para os="c">Compile the package:</para>
diff --git a/BOOK/introduction/common/changelog.xml b/BOOK/introduction/common/changelog.xml
index 812c96a..7c5e25e 100644
--- a/BOOK/introduction/common/changelog.xml
+++ b/BOOK/introduction/common/changelog.xml
@@ -37,6 +37,16 @@
 -->
 
     <listitem>
+      <para>01 October 2015</para>
+      <itemizedlist>
+        <listitem>
+          <para>[Chris] - Removed unneeded --disable-static option from
+          Cross-Tools File page, as that is now the default.</para>
+        </listitem>
+      </itemizedlist>
+    </listitem>
+
+    <listitem>
       <para>22 September 2015</para>
       <itemizedlist>
         <listitem>

-----------------------------------------------------------------------

Summary of changes:
 BOOK/cross-tools/common/file.xml       |   10 +---------
 BOOK/cross-tools/common/gmp.xml        |    8 ++++++++
 BOOK/cross-tools/common/ncurses.xml    |   10 +---------
 BOOK/general.ent                       |    6 +++---
 BOOK/introduction/common/changelog.xml |   14 ++++++++++++++
 5 files changed, 27 insertions(+), 21 deletions(-)


hooks/post-receive
-- 
Cross-LFS Book



More information about the Clfs-commits mailing list