summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--configure.ac3
-rw-r--r--meson.build4
2 files changed, 5 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 22349b67b..1f557b967 100644
--- a/configure.ac
+++ b/configure.ac
@@ -221,7 +221,8 @@ LIBSOUP_REQUIRED=2.40
# 3.7.0 for WAL
# 3.7.9 for FTS4 content= support
# 3.7.15 for sqlite3_errstr() support
-SQLITE_REQUIRED=3.7.15
+# 3.8.3 for SQLITE_DETERMINISTIC
+SQLITE_REQUIRED=3.8.3
# Needed to generate .gir files,
# see http://live.gnome.org/GnomeGoals/AddGObjectIntrospectionSupport
diff --git a/meson.build b/meson.build
index 573064d3c..d83308cb9 100644
--- a/meson.build
+++ b/meson.build
@@ -14,7 +14,9 @@ glib_required = '2.40.0'
# 3.6.17 for shared cache mode with virtual tables
# 3.7.0 for WAL
# 3.7.9 for FTS4 content= support
-sqlite_required = '3.7.9'
+# 3.7.15 for sqlite3_errstr() support
+# 3.8.3 for SQLITE_DETERMINISTIC
+sqlite_required = '3.8.3'
dbus = dependency('dbus-1', version: '> 1.3.1')
gio = dependency('gio-2.0', version: '>' + glib_required)