Changeset 0f0bfc1


Ignore:
Timestamp:
03/30/2010 03:57:16 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:
1d89a17
Parents:
e925589
Message:

Updated to SQLite-3.6.23

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@8365 af4574ff-66df-0310-9fd7-8a98e5e911e0

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • general.ent

    re925589 r0f0bfc1  
    44-->
    55
    6 <!ENTITY day          "29">                   <!-- Always 2 digits -->
     6<!ENTITY day          "30">                   <!-- Always 2 digits -->
    77<!ENTITY month        "03">                   <!-- Always 2 digits -->
    88<!ENTITY year         "2010">
     
    460460<!ENTITY mysql-version                "5.1.42">
    461461<!ENTITY postgresql-version           "8.3.10">
    462 <!ENTITY sqlite-version               "3.6.22">
     462<!ENTITY sqlite-version               "3.6.23">
    463463
    464464<!-- Obsolete
  • introduction/welcome/changelog.xml

    re925589 r0f0bfc1  
    4343
    4444    <listitem>
     45      <para>March 30th, 2010</para>
     46      <itemizedlist>
     47        <listitem>
     48          <para>[randy] - Updated to SQLite-3.6.23.</para>
     49        </listitem>
     50      </itemizedlist>
     51    </listitem>
     52
     53    <listitem>
    4554      <para>March 29th, 2010</para>
    4655      <itemizedlist>
  • server/databases/sqlite.xml

    re925589 r0f0bfc1  
    77  <!ENTITY sqlite-download-http "http://sqlite.org/sqlite-amalgamation-&sqlite-version;.tar.gz">
    88  <!ENTITY sqlite-download-ftp  " ">
    9   <!ENTITY sqlite-md5sum        "b683b3903e79ab8a6d928dc9d4a56937">
     9  <!ENTITY sqlite-md5sum        "8f1e86b3909a27f8122b0981afd16fcd">
    1010  <!ENTITY sqlite-size          "1.4 MB">
    11   <!ENTITY sqlite-buildsize     "27 MB (includes optional documentation)">
     11  <!ENTITY sqlite-buildsize     "30 MB (includes optional documentation)">
    1212  <!ENTITY sqlite-time          "0.5 SBU">
    1313
    14   <!ENTITY sqlite-docs-version  "3_6_22">
     14  <!ENTITY sqlite-docs-version  "3_6_23">
    1515  <!ENTITY sqlite-docs-download "http://sqlite.org/sqlite_docs_&sqlite-docs-version;.zip">
    1616]>
     
    8383    commands:</para>
    8484
    85 <screen><userinput>./configure --prefix=/usr --enable-threadsafe &amp;&amp;
     85<screen><userinput>./configure --prefix=/usr \
     86            --enable-threadsafe \
     87            --enable-readline \
     88            --enable-dynamic-extensions &amp;&amp;
    8689make</userinput></screen>
    8790
    88     <para>To test the results, issue: <command>make test</command>.</para>
     91    <para>This package does not come with a test suite.</para>
    8992
    9093    <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
     
    109112    default, it is not. You must add this parameter if you want a threadsafe
    110113    library.</para>
     114
     115    <para><parameter>--enable-readline</parameter>: This parameter is used so
     116    the command-line program <command>sqlite3</command> has command line
     117    editing capability.</para>
     118
     119    <para><parameter>--enable-dynamic-extensions</parameter>: This creates
     120    library modules that are dynamically linked as needed instead of statically
     121    linking them into the main <application>SQLite</application> library.</para>
    111122
    112123  </sect2>
Note: See TracChangeset for help on using the changeset viewer.