From: Vsevolod Stakhov Date: Tue, 13 Dec 2011 13:10:16 +0000 (+0300) Subject: FIx built under RHEL and CentOS as they has too old sqlite. X-Git-Tag: 0.4.6~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=835efda3d565d8541a31cc8116fb9c77d71cd0d8;p=thirdparty%2Frspamd.git FIx built under RHEL and CentOS as they has too old sqlite. --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 9859fe05e7..cca151f26e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -317,7 +317,7 @@ IF(PCRE_LIBRARY_DIRS) ENDIF(PCRE_LIBRARY_DIRS) # Find optional sqlite3 support -pkg_check_modules(SQLITE sqlite3) +pkg_check_modules(SQLITE sqlite3>=3.6.0) IF(SQLITE_FOUND) SET(WITH_SQLITE 1) ENDIF(SQLITE_FOUND)