Hi,
The minimum required sqlite version has been bumped to 3.7.12 in r1347802.
However, get-deps.sh script still downloads sqlite-3.7.10. So the
'configure'
script fails as the minimum required version is 3.7.12.
Attached a patch to update this version.
Thanks & Regards,
Vijayaguru
Index: get-deps.sh
===================================================================
--- get-deps.sh (revision 1347948)
+++ get-deps.sh (working copy)
@@ -28,7 +28,7 @@
NEON=neon-0.29.6
SERF=serf-1.0.1
ZLIB=zlib-1.2.6
-SQLITE_VERSION=3.7.10
+SQLITE_VERSION=3.7.12
SQLITE=sqlite-amalgamation-$(printf %u%02u%02u%02u $(echo $SQLITE_VERSION |
sed -e "s/\./ /g"))
HTTPD=httpd-2.2.22
* get-deps.sh: Update SQLite version.
Patch by: Vijayaguru G <vijay{_AT_}collab.net>