diff options
author | Daniel Golle <daniel@makrotopia.org> | 2017-03-23 15:31:17 +0100 |
---|---|---|
committer | Daniel Golle <daniel@makrotopia.org> | 2017-03-23 15:31:17 +0100 |
commit | 46fc5ea62b987d109d2d9359a2e0f95bd02cba44 (patch) | |
tree | 18705bab2bc5a729f6743a347bf373124bfc0ff4 /configure.ac | |
parent | 78ecfccd774a77ae3d7a51e3f5c7c7c86cf7985b (diff) |
postgresql: require version 9.5
CREATE INDEX IF NOT EXISTS was added at version 9.5 (rather than 9.6)
see also https://www.postgresql.org/docs/9.5/static/sql-createindex.html
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 273301f1b6..a7b90597ad 100644 --- a/configure.ac +++ b/configure.ac @@ -818,7 +818,7 @@ CPPFLAGS=$SAVE_CPPFLAGS postgres=false # even running the check for postgres breaks emscripten ... if test "$taler_only" != yes; then - AX_LIB_POSTGRESQL([9.6]) + AX_LIB_POSTGRESQL([9.5]) if test "$found_postgresql" = "yes"; then CPPFLAGS="$CPPFLAGS $POSTGRESQL_CPPFLAGS" AC_CHECK_HEADERS([libpq-fe.h], |