[tracker] build: Add SQLite version warning for 3.8.4.2
- From: Martyn James Russell <mr src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [tracker] build: Add SQLite version warning for 3.8.4.2
- Date: Tue, 15 Apr 2014 19:02:44 +0000 (UTC)
commit 0cee624992ad38c1fcfb71e40e6c29f4dfcfa5e6
Author: Martyn Russell <martyn lanedo com>
Date: Tue Apr 15 20:02:01 2014 +0100
build: Add SQLite version warning for 3.8.4.2
See: https://mail.gnome.org/archives/tracker-list/2014-April/msg00001.html
configure.ac | 20 ++++++++++++--------
1 files changed, 12 insertions(+), 8 deletions(-)
---
diff --git a/configure.ac b/configure.ac
index 4adac1a..0b3b19b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -671,12 +671,10 @@ fi
# Make sure we're not using versions which cause problems.
#
# Avoid versions:
-# 3.7.10 - 3.7.13
-# 3.8.1
+# 3.7.10 - 3.7.13: https://mail.gnome.org/archives/tracker-list/2012-October/msg00028.html
+# 3.8.1: https://mail.gnome.org/archives/tracker-list/2013-November/msg00021.html
+# 3.8.4.1: https://mail.gnome.org/archives/tracker-list/2014-April/msg00001.html
#
-# For details see:
-# https://mail.gnome.org/archives/tracker-list/2012-October/msg00028.html
-# https://mail.gnome.org/archives/tracker-list/2013-November/msg00021.html
AC_MSG_CHECKING(whether SQLite3 version is safe)
PKG_CHECK_EXISTS([sqlite3 <= 3.7.9], sqlite_safe=yes, sqlite_safe=no)
@@ -688,6 +686,11 @@ if test "x$sqlite_safe" = "xyes"; then
PKG_CHECK_EXISTS([sqlite3 = 3.8.1], sqlite_safe=no, sqlite_safe=yes)
fi
+if test "x$sqlite_safe" = "xyes"; then
+ PKG_CHECK_EXISTS([sqlite3 = 3.8.4.2], sqlite_safe=no, sqlite_safe=yes)
+fi
+
+
if test "x$sqlite_safe" != "xyes"; then
AC_MSG_RESULT(no)
else
@@ -2561,9 +2564,10 @@ sqlite_version=$($PKG_CONFIG --modversion sqlite3)
echo "
WARNING:
SQLite3 version $sqlite_version is not safe. For details see:
- https://mail.gnome.org/archives/tracker-list/2012-October/msg00028.html
- https://mail.gnome.org/archives/tracker-list/2013-November/msg00021.html
- Unsafe versions are 3.7.10 to 3.7.13, and 3.8.1.
+ 3.7.10 - 3.7.13: https://mail.gnome.org/archives/tracker-list/2012-October/msg00028.html
+ 3.8.1: https://mail.gnome.org/archives/tracker-list/2013-November/msg00021.html
+ 3.8.4.2: https://mail.gnome.org/archives/tracker-list/2014-April/msg00001.html
+
"
fi
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]