From ddf8ca4b3012f240cfc6020fd8e8347ee3308872 Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Thu, 22 Nov 2018 13:36:21 +0100 Subject: [PATCH] no hard fail if pq not found --- configure.ac | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 45b2024a5..c322f57ac 100644 --- a/configure.ac +++ b/configure.ac @@ -1072,7 +1072,8 @@ AS_IF([test "$taler_only" != yes], [CPPFLAGS="$CPPFLAGS $POSTGRESQL_CPPFLAGS" AC_CHECK_HEADERS([libpq-fe.h], postgres=true) - ])]) + ])], + [AC_MSG_RESULT([no postgres])]) AM_CONDITIONAL(HAVE_POSTGRESQL, test x$postgres = xtrue) -- 2.25.1