From: Christian Grothoff Date: Thu, 22 Nov 2018 12:36:21 +0000 (+0100) Subject: no hard fail if pq not found X-Git-Tag: v0.11.0~226 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=ddf8ca4b3012f240cfc6020fd8e8347ee3308872;p=oweals%2Fgnunet.git no hard fail if pq not found --- 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)