Author: randy
Date: 2010-03-29 06:37:44 -0600 (Mon, 29 Mar 2010)
New Revision: 8363

Modified:
   trunk/BOOK/general.ent
   trunk/BOOK/introduction/welcome/changelog.xml
   trunk/BOOK/server/databases/sqlite.xml
Log:
Added a parameter to the SQLite configure command so that it builds in 
threadsafe mode, thanks to David Jensen for pointing out that it is required

Modified: trunk/BOOK/general.ent
===================================================================
--- trunk/BOOK/general.ent      2010-03-28 17:49:10 UTC (rev 8362)
+++ trunk/BOOK/general.ent      2010-03-29 12:37:44 UTC (rev 8363)
@@ -3,7 +3,7 @@
 $Date$
 -->
 
-<!ENTITY day          "28">                   <!-- Always 2 digits -->
+<!ENTITY day          "29">                   <!-- Always 2 digits -->
 <!ENTITY month        "03">                   <!-- Always 2 digits -->
 <!ENTITY year         "2010">
 <!ENTITY copyrightdate "2001-&year;">
@@ -225,7 +225,7 @@
 <!ENTITY xscreensaver-version         "5.03">
 <!ENTITY pilot-link-version           "0.12.2">
 <!ENTITY unixodbc-version             "2.2.12">
-<!ENTITY graphviz-version             "2.12">
+<!ENTITY graphviz-version             "2.26.3">
 <!ENTITY recode-version               "3.6">
 <!ENTITY xcb-util-version             "0.3.6">
 <!ENTITY xterm-version                "253">

Modified: trunk/BOOK/introduction/welcome/changelog.xml
===================================================================
--- trunk/BOOK/introduction/welcome/changelog.xml       2010-03-28 17:49:10 UTC 
(rev 8362)
+++ trunk/BOOK/introduction/welcome/changelog.xml       2010-03-29 12:37:44 UTC 
(rev 8363)
@@ -42,6 +42,17 @@
 -->
 
     <listitem>
+      <para>March 29th, 2010</para>
+      <itemizedlist>
+        <listitem>
+          <para>[randy] - Added a parameter to the SQLite configure command so
+          that it builds in threadsafe mode, thanks to David Jensen for
+          pointing out that it is required.</para>
+        </listitem>
+      </itemizedlist>
+    </listitem>
+
+    <listitem>
       <para>March 28th, 2010</para>
       <itemizedlist>
         <listitem>

Modified: trunk/BOOK/server/databases/sqlite.xml
===================================================================
--- trunk/BOOK/server/databases/sqlite.xml      2010-03-28 17:49:10 UTC (rev 
8362)
+++ trunk/BOOK/server/databases/sqlite.xml      2010-03-29 12:37:44 UTC (rev 
8363)
@@ -82,7 +82,7 @@
     <para>Install <application>SQLite</application> by running the following
     commands:</para>
 
-<screen><userinput>./configure --prefix=/usr &amp;&amp;
+<screen><userinput>./configure --prefix=/usr --enable-threadsafe &amp;&amp;
 make</userinput></screen>
 
     <para>To test the results, issue: <command>make test</command>.</para>
@@ -101,6 +101,16 @@
 
   </sect2>
 
+  <sect2 role="commands">
+    <title>Command Explanations</title>
+
+    <para><parameter>--enable-threadsafe</parameter>: Though the documentation
+    and running <command>./configure --help</command> indicate that this is the
+    default, it is not. You must add this parameter if you want a threadsafe
+    library.</para>
+
+  </sect2>
+
   <sect2 role="content">
     <title>Contents</title>
 

-- 
http://linuxfromscratch.org/mailman/listinfo/blfs-book
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

Reply via email to