[Clfs-commits] [Cross-LFS]Cross-LFS Book branch, sysvinit, updated. clfs-3.0.0-sysvinit-165-g681f7cf

git git at clfs.org
Thu Oct 1 02:21:28 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, sysvinit has been updated
       via  681f7cf0874d045cbf2c52b93db1d1b3f2249c03 (commit)
       via  f8d4d07bae0bc3dbb5c7e786d6452c302e5309b1 (commit)
       via  657bd84548138e3fd0c7a49996fb8b01a1b928c1 (commit)
      from  b49eaf581867a44a8e4dd78909cf1e6c9f81bad2 (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 681f7cf0874d045cbf2c52b93db1d1b3f2249c03
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 5b20327..4c6de8e 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 f8d4d07bae0bc3dbb5c7e786d6452c302e5309b1
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 e4a6989..00c066b 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 657bd84548138e3fd0c7a49996fb8b01a1b928c1
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 878a15e..5b20327 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