mirror of
https://github.com/Zeckmathederg/glfs.git
synced 2025-02-03 14:47:17 +08:00
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:
parent
f0211af292
commit
bdf24aa473
@ -3,7 +3,7 @@ $LastChangedBy$
|
||||
$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 @@ $Date$
|
||||
<!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">
|
||||
|
@ -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>
|
||||
<para>March 28th, 2010</para>
|
||||
<itemizedlist>
|
||||
|
@ -82,7 +82,7 @@
|
||||
<para>Install <application>SQLite</application> by running the following
|
||||
commands:</para>
|
||||
|
||||
<screen><userinput>./configure --prefix=/usr &&
|
||||
<screen><userinput>./configure --prefix=/usr --enable-threadsafe &&
|
||||
make</userinput></screen>
|
||||
|
||||
<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 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>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user