Changeset bdf24aa4


Ignore:
Timestamp:
03/29/2010 12:37:44 PM (14 years ago)
Author:
Randy McMurchy <randy@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 7.10, 7.4, 7.5, 7.6, 7.6-blfs, 7.6-systemd, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gnome, kde5-13430, kde5-14269, kde5-14686, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, systemd-11177, systemd-13485, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
e925589
Parents:
f0211af2
Message:

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

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • general.ent

    rf0211af2 rbdf24aa4  
    44-->
    55
    6 <!ENTITY day          "28">                   <!-- Always 2 digits -->
     6<!ENTITY day          "29">                   <!-- Always 2 digits -->
    77<!ENTITY month        "03">                   <!-- Always 2 digits -->
    88<!ENTITY year         "2010">
     
    226226<!ENTITY pilot-link-version           "0.12.2">
    227227<!ENTITY unixodbc-version             "2.2.12">
    228 <!ENTITY graphviz-version             "2.12">
     228<!ENTITY graphviz-version             "2.26.3">
    229229<!ENTITY recode-version               "3.6">
    230230<!ENTITY xcb-util-version             "0.3.6">
  • introduction/welcome/changelog.xml

    rf0211af2 rbdf24aa4  
    4343
    4444    <listitem>
     45      <para>March 29th, 2010</para>
     46      <itemizedlist>
     47        <listitem>
     48          <para>[randy] - Added a parameter to the SQLite configure command so
     49          that it builds in threadsafe mode, thanks to David Jensen for
     50          pointing out that it is required.</para>
     51        </listitem>
     52      </itemizedlist>
     53    </listitem>
     54
     55    <listitem>
    4556      <para>March 28th, 2010</para>
    4657      <itemizedlist>
  • server/databases/sqlite.xml

    rf0211af2 rbdf24aa4  
    8383    commands:</para>
    8484
    85 <screen><userinput>./configure --prefix=/usr &amp;&amp;
     85<screen><userinput>./configure --prefix=/usr --enable-threadsafe &amp;&amp;
    8686make</userinput></screen>
    8787
     
    9999cp      -v -R       sqlite-&sqlite-docs-version;-docs/* \
    100100                    /usr/share/doc/sqlite-&sqlite-version;</userinput></screen>
     101
     102  </sect2>
     103
     104  <sect2 role="commands">
     105    <title>Command Explanations</title>
     106
     107    <para><parameter>--enable-threadsafe</parameter>: Though the documentation
     108    and running <command>./configure --help</command> indicate that this is the
     109    default, it is not. You must add this parameter if you want a threadsafe
     110    library.</para>
    101111
    102112  </sect2>
Note: See TracChangeset for help on using the changeset viewer.