summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--dist/changes-5.0.04
-rw-r--r--src/3rdparty/sqlite.pri2
2 files changed, 4 insertions, 2 deletions
diff --git a/dist/changes-5.0.0 b/dist/changes-5.0.0
index 0df359f3ed..9763c5ad17 100644
--- a/dist/changes-5.0.0
+++ b/dist/changes-5.0.0
@@ -279,7 +279,9 @@ General Improvements
Third party components
----------------------
--
+- SQLITE_ENABLE_FTS3,SQLITE_ENABLE_FTS3_PARENTHESIS and SQLITE_ENABLE_RTREE
+flags are now enabled by default on all platforms, for the sqlite3 copy under
+the 3rdparty directory.
****************************************************************************
diff --git a/src/3rdparty/sqlite.pri b/src/3rdparty/sqlite.pri
index e8fa827b13..e31415a80e 100644
--- a/src/3rdparty/sqlite.pri
+++ b/src/3rdparty/sqlite.pri
@@ -1,5 +1,5 @@
CONFIG(release, debug|release):DEFINES *= NDEBUG
-DEFINES += SQLITE_OMIT_LOAD_EXTENSION SQLITE_OMIT_COMPLETE
+DEFINES += SQLITE_OMIT_LOAD_EXTENSION SQLITE_OMIT_COMPLETE SQLITE_ENABLE_FTS3 SQLITE_ENABLE_FTS3_PARENTHESIS SQLITE_ENABLE_RTREE
!contains(CONFIG, largefile):DEFINES += SQLITE_DISABLE_LFS
INCLUDEPATH += $$PWD/sqlite
SOURCES += $$PWD/sqlite/sqlite3.c