From e61238e9cd1361644e226dfb734c9ab223d4c87f Mon Sep 17 00:00:00 2001 From: Michael Vetter Date: Mon, 6 Apr 2020 22:37:05 +0200 Subject: [PATCH] Require only sqlite 3.28.0 We don't need newer features and so it runs on Leap 15.1 too. Let's see what Debian etc. need. --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 92db515f..44bcc032 100644 --- a/configure.ac +++ b/configure.ac @@ -179,8 +179,8 @@ PKG_CHECK_MODULES([curl], [libcurl], [], [AC_CHECK_LIB([curl], [main], [], [AC_MSG_ERROR([libcurl is required for profanity])])]) -PKG_CHECK_MODULES([SQLITE], [sqlite3 >= 3.30.0], [], - [AC_MSG_ERROR([sqlite3 3.30.0 or higher is required for profanity profanity])]) +PKG_CHECK_MODULES([SQLITE], [sqlite3 >= 3.28.0], [], + [AC_MSG_ERROR([sqlite3 3.28.0 or higher is required for profanity profanity])]) AS_IF([test "x$enable_icons_and_clipboard" != xno], [PKG_CHECK_MODULES([GTK], [gtk+-2.0 >= 2.24.10],