Changeset f91611f8


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

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • general.ent

    rfd1a0a33 rf91611f8  
    11<!-- $LastChangedBy$ $Date$ -->
    22
    3 <!ENTITY day          "05">                   <!-- Always 2 digits -->
     3<!ENTITY day          "06">                   <!-- Always 2 digits -->
    44<!ENTITY month        "11">                   <!-- Always 2 digits -->
    55<!ENTITY year         "2017">
     
    77<!ENTITY copyholder   "The BLFS Development Team">
    88<!ENTITY version      "&year;-&month;-&day;">
    9 <!ENTITY releasedate  "November 5th, &year;">
     9<!ENTITY releasedate  "November 6th, &year;">
    1010<!ENTITY pubdate      "&year;-&month;-&day;"> <!-- metadata req. by TLDP -->
    1111<!ENTITY blfs-version "svn">                  <!-- svn|[release #] -->
  • introduction/welcome/changelog.xml

    rfd1a0a33 rf91611f8  
    4444
    4545    <listitem>
     46      <para>November 6th, 2017</para>
     47      <itemizedlist>
     48        <listitem>
     49          <para>[dj] - Correct SQLite build for FTS3/4. Fixes
     50          <ulink url="&blfs-ticket-root;9986">#9986</ulink>.</para>
     51        </listitem>
     52      </itemizedlist>
     53    </listitem>
     54
     55    <listitem>
    4656      <para>November 5th, 2017</para>
    4757      <itemizedlist>
  • 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.