diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2019-11-07 13:44:35 +0100 |
|---|---|---|
| committer | Even Rouault <even.rouault@spatialys.com> | 2019-11-07 13:48:09 +0100 |
| commit | d2a2b3e4e99b3f661fc6167db332b3b2d9e50591 (patch) | |
| tree | 6b78218b0b5012a9172f282b9687ba99b4cfcf85 /configure.ac | |
| parent | 34dc695402ba5d10248ea47bec3ab88ed950eccb (diff) | |
| download | PROJ-d2a2b3e4e99b3f661fc6167db332b3b2d9e50591.tar.gz PROJ-d2a2b3e4e99b3f661fc6167db332b3b2d9e50591.zip | |
Build: require SQLite 3.11 (refs #1718)
PROJ can build and run against older version (3.7 for example), but it has
been found that performance is horrible. With 3.11 (Ubuntu 16.04), it is
fine, so sets this as the minimum version.
Diffstat (limited to 'configure.ac')
| -rw-r--r-- | configure.ac | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 7a6814b4..e9274621 100644 --- a/configure.ac +++ b/configure.ac @@ -280,7 +280,11 @@ dnl Check for sqlite3 library and binary dnl --------------------------------------------------------------------------- if test "x$SQLITE3_CFLAGS$SQLITE3_LIBS" = "x" ; then - PKG_CHECK_MODULES([SQLITE3], [sqlite3 >= 3.7]) + + dnl Would build and run with older versons, but with horrible performance + dnl See https://github.com/OSGeo/PROJ/issues/1718 + + PKG_CHECK_MODULES([SQLITE3], [sqlite3 >= 3.11]) fi AC_SUBST(SQLITE3_CFLAGS,$SQLITE3_CFLAGS) AC_SUBST(SQLITE3_LIBS,$SQLITE3_LIBS) |
