aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--configure.ac16
1 files changed, 9 insertions, 7 deletions
diff --git a/configure.ac b/configure.ac
index bd230860d..50bc45594 100644
--- a/configure.ac
+++ b/configure.ac
@@ -796,14 +796,16 @@ AC_SUBST(SQLITE_LDFLAGS)
796 796
797# test for postgres 797# test for postgres
798postgres=false 798postgres=false
799AX_LIB_POSTGRESQL([]) 799# even running the check for postgres breaks emscripten ...
800if test "$found_postgresql" = "yes"; then 800if test "$taler_only" != yes; then
801 CFLAGS="$CFLAGS $POSTGRESQL_CPPFLAGS" 801 AX_LIB_POSTGRESQL([])
802 CPPFLAGS="$CPPFLAGS $POSTGRESQL_CPPFLAGS" 802 if test "$found_postgresql" = "yes"; then
803 AC_CHECK_HEADERS([libpq-fe.h], 803 CFLAGS="$CFLAGS $POSTGRESQL_CPPFLAGS"
804 postgres=true) 804 CPPFLAGS="$CPPFLAGS $POSTGRESQL_CPPFLAGS"
805 AC_CHECK_HEADERS([libpq-fe.h],
806 postgres=true)
807 fi
805fi 808fi
806
807AM_CONDITIONAL(HAVE_POSTGRESQL, test x$postgres = xtrue) 809AM_CONDITIONAL(HAVE_POSTGRESQL, test x$postgres = xtrue)
808 810
809 811