aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README2
-rw-r--r--configure.ac2
2 files changed, 2 insertions, 2 deletions
diff --git a/README b/README
index 7f73525e8..4f0e3c08c 100644
--- a/README
+++ b/README
@@ -42,7 +42,7 @@ These are the direct dependencies for running GNUnet:
42- libltdl >= 2.2 (part of GNU libtool) 42- libltdl >= 2.2 (part of GNU libtool)
43- sqlite >= 3.8 (default database, required) 43- sqlite >= 3.8 (default database, required)
44- mysql >= 5.1 (alternative to sqlite) 44- mysql >= 5.1 (alternative to sqlite)
45- postgres >= 9.6 (alternative to sqlite) 45- postgres >= 9.5 (alternative to sqlite)
46- libopus >= 1.0.1 (optional for experimental conversation tool) 46- libopus >= 1.0.1 (optional for experimental conversation tool)
47- libpulse >= 2.0 (optional for experimental conversation tool) 47- libpulse >= 2.0 (optional for experimental conversation tool)
48- libogg >= 1.3.0 (optional for experimental conversation tool) 48- libogg >= 1.3.0 (optional for experimental conversation tool)
diff --git a/configure.ac b/configure.ac
index 273301f1b..a7b90597a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -818,7 +818,7 @@ CPPFLAGS=$SAVE_CPPFLAGS
818postgres=false 818postgres=false
819# even running the check for postgres breaks emscripten ... 819# even running the check for postgres breaks emscripten ...
820if test "$taler_only" != yes; then 820if test "$taler_only" != yes; then
821 AX_LIB_POSTGRESQL([9.6]) 821 AX_LIB_POSTGRESQL([9.5])
822 if test "$found_postgresql" = "yes"; then 822 if test "$found_postgresql" = "yes"; then
823 CPPFLAGS="$CPPFLAGS $POSTGRESQL_CPPFLAGS" 823 CPPFLAGS="$CPPFLAGS $POSTGRESQL_CPPFLAGS"
824 AC_CHECK_HEADERS([libpq-fe.h], 824 AC_CHECK_HEADERS([libpq-fe.h],