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

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@8363 af4574ff-66df-0310-9fd7-8a98e5e911e0
This commit is contained in:
Randy McMurchy 2010-03-29 12:37:44 +00:00
parent f0211af292
commit bdf24aa473
3 changed files with 24 additions and 3 deletions

View File

@ -3,7 +3,7 @@ $LastChangedBy$
$Date$ $Date$
--> -->
<!ENTITY day "28"> <!-- Always 2 digits --> <!ENTITY day "29"> <!-- Always 2 digits -->
<!ENTITY month "03"> <!-- Always 2 digits --> <!ENTITY month "03"> <!-- Always 2 digits -->
<!ENTITY year "2010"> <!ENTITY year "2010">
<!ENTITY copyrightdate "2001-&year;"> <!ENTITY copyrightdate "2001-&year;">
@ -225,7 +225,7 @@ $Date$
<!ENTITY xscreensaver-version "5.03"> <!ENTITY xscreensaver-version "5.03">
<!ENTITY pilot-link-version "0.12.2"> <!ENTITY pilot-link-version "0.12.2">
<!ENTITY unixodbc-version "2.2.12"> <!ENTITY unixodbc-version "2.2.12">
<!ENTITY graphviz-version "2.12"> <!ENTITY graphviz-version "2.26.3">
<!ENTITY recode-version "3.6"> <!ENTITY recode-version "3.6">
<!ENTITY xcb-util-version "0.3.6"> <!ENTITY xcb-util-version "0.3.6">
<!ENTITY xterm-version "253"> <!ENTITY xterm-version "253">

View File

@ -41,6 +41,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> <listitem>
<para>March 28th, 2010</para> <para>March 28th, 2010</para>
<itemizedlist> <itemizedlist>

View File

@ -82,7 +82,7 @@
<para>Install <application>SQLite</application> by running the following <para>Install <application>SQLite</application> by running the following
commands:</para> commands:</para>
<screen><userinput>./configure --prefix=/usr &amp;&amp; <screen><userinput>./configure --prefix=/usr --enable-threadsafe &amp;&amp;
make</userinput></screen> make</userinput></screen>
<para>To test the results, issue: <command>make test</command>.</para> <para>To test the results, issue: <command>make test</command>.</para>
@ -101,6 +101,16 @@ cp -v -R sqlite-&sqlite-docs-version;-docs/* \
</sect2> </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"> <sect2 role="content">
<title>Contents</title> <title>Contents</title>