From: Travis Cross Date: Mon, 24 Mar 2014 13:54:37 +0000 (+0000) Subject: Lower required version of sqlite for CentOS 6 X-Git-Tag: v1.5.12~319 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bcfb72cb2b4a6972956fb48d153ecb7502847758;p=thirdparty%2Ffreeswitch.git Lower required version of sqlite for CentOS 6 Apparently CentOS 6 has only v3.6.20 of sqlite, so we'll accommodate that barring evidence we shouldn't. Please test and report back. --- diff --git a/configure.ac b/configure.ac index 21793ad1eb..0f5c030b09 100644 --- a/configure.ac +++ b/configure.ac @@ -1081,7 +1081,7 @@ case $host in ;; esac -PKG_CHECK_MODULES([SQLITE], [sqlite3 >= 3.7.13]) +PKG_CHECK_MODULES([SQLITE], [sqlite3 >= 3.6.20]) PKG_CHECK_MODULES([CURL], [libcurl >= 7.19]) PKG_CHECK_MODULES([PCRE], [libpcre >= 7.8]) PKG_CHECK_MODULES([SPEEX], [speex >= 1.2rc1 speexdsp >= 1.2rc1])