Changeset f4ac439a for server


Ignore:
Timestamp:
10/27/2017 06:44:48 PM (7 years ago)
Author:
DJ Lucas <dj@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
934fac6
Parents:
737f339
Message:

Update to SQLite-3.21.0. Fixes #9932.

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • server/databases/sqlite.xml

    r737f339 rf4ac439a  
    55  %general-entities;
    66
    7   <!ENTITY sqlite-dl-version    "3200100">
    8   <!ENTITY sqlite-doc-version   "3200100">
     7  <!ENTITY sqlite-dl-version    "3210000">
     8  <!ENTITY sqlite-doc-version   "3210000">
    99
    1010  <!ENTITY sqlite-download-http "https://sqlite.org/2017/sqlite-autoconf-&sqlite-dl-version;.tar.gz">
    1111  <!ENTITY sqlite-download-ftp  " ">
    12   <!ENTITY sqlite-md5sum        "369444dbf11895c61949940a6b038f92">
    13   <!ENTITY sqlite-size          "2.4 MB">
    14   <!ENTITY sqlite-buildsize     "73 MB (with docs)">
    15   <!ENTITY sqlite-time          "0.4 SBU">
     12  <!ENTITY sqlite-md5sum        "7913de4c3126ba3c24689cb7a199ea31">
     13  <!ENTITY sqlite-size          "2.5 MB">
     14  <!ENTITY sqlite-buildsize     "79 MB">
     15  <!ENTITY sqlite-time          "0.3 SBU">
    1616
    1717  <!ENTITY sqlite-docs-download "https://sqlite.org/2017/sqlite-doc-&sqlite-doc-version;.zip">
    18   <!ENTITY sqlite-docs-md5sum   "51a0aa9bbc78cc61c7d16625297c733b">
    19   <!ENTITY sqlite-docs-size     "5.5 MB">
     18  <!ENTITY sqlite-docs-md5sum   "082aa03bc43b6e00db9787b30a2efa4f">
     19  <!ENTITY sqlite-docs-size     "5.6 MB">
    2020]>
    2121
     
    128128
    129129<screen><userinput>./configure --prefix=/usr --disable-static        \
    130             CFLAGS="-g -O2 -DSQLITE_ENABLE_FTS3=1 \
     130            --enable-fts3 --enable-fts4           \
     131            --enable-fts5 CFLAGS="-g -O2          \
    131132            -DSQLITE_ENABLE_COLUMN_METADATA=1     \
    132133            -DSQLITE_ENABLE_UNLOCK_NOTIFY=1       \
     
    162163
    163164    <para>
    164       <parameter>CFLAGS="-g -O2 -DSQLITE_ENABLE_FTS3=1
    165       <!-- insecure, see below: -DSQLITE_ENABLE_FTS3_TOKENIZER=1 -->
     165      <parameter>--enable-fts*</parameter>: enable all three full text search
     166      extensions.
     167    </para>
     168
     169    <para>
     170      <parameter>CFLAGS="-g -O2
    166171      -DSQLITE_ENABLE_COLUMN_METADATA=1
    167       -DSQLITE_SECURE_DELETE -DSQLITE_ENABLE_UNLOCK_NOTIFY=1
     172      -DSQLITE_SECURE_DELETE
     173      -DSQLITE_ENABLE_UNLOCK_NOTIFY=1
    168174      -DSQLITE_ENABLE_DBSTAT_VTAB=1"</parameter>: Applications such as
    169175      <application>Firefox</application> require secure delete and enable
    170176      unlock notify to be turned on.
    171       <!-- Thunderbird requires the
    172       fts3_tokenizer option: this option is insecure if set for any
    173       application using sqlite on the host. So it is disabled for now, and the
    174       thunderbird static sqlite library is used instead.-->
    175177      Since <application>firefox-41</application> the dbstat virtual
    176178      table is also required. The only way to do this is to include them in the
Note: See TracChangeset for help on using the changeset viewer.