Changeset f91611f8 for server


Ignore:
Timestamp:
11/06/2017 04:14:50 AM (6 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:
574d4b0d
Parents:
fd1a0a33
Message:

Correct SQLite build for FTS3/4. Fixes #9986.

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • server/databases/sqlite.xml

    rfd1a0a33 rf91611f8  
    128128
    129129<screen><userinput>./configure --prefix=/usr --disable-static        \
    130             --enable-fts3 --enable-fts4           \
    131130            --enable-fts5 CFLAGS="-g -O2          \
     131            -DSQLITE_ENABLE_FTS4=1                \
    132132            -DSQLITE_ENABLE_COLUMN_METADATA=1     \
    133133            -DSQLITE_ENABLE_UNLOCK_NOTIFY=1       \
     
    163163
    164164    <para>
    165       <parameter>--enable-fts*</parameter>: enable all three full text search
    166       extensions.
     165      <parameter>--enable-fts5</parameter>: enable version 5 of the full text
     166      search extension.
    167167    </para>
    168168
    169169    <para>
    170170      <parameter>CFLAGS="-g -O2
     171      -DSQLITE_ENABLE_FTS4=1
    171172      -DSQLITE_ENABLE_COLUMN_METADATA=1
    172173      -DSQLITE_SECURE_DELETE
     
    175176      <application>Firefox</application> require secure delete and enable
    176177      unlock notify to be turned on.
    177       Since <application>firefox-41</application> the dbstat virtual
    178       table is also required. The only way to do this is to include them in the
    179       CFLAGS. By default, these are set to <literal>"-g -O2"</literal> so we
     178      Since <application>firefox-41</application> the dbstat virtual table and
     179      FTS3/4 are also required. The only way to do this is to include them in
     180      the CFLAGS. By default, these are set to <literal>"-g -O2"</literal> so we
    180181      specify that to preserve those settings. You may, of course, wish to omit
    181182      the <literal>'-g'</literal> if you do not wish to create debugging
Note: See TracChangeset for help on using the changeset viewer.