gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r38153 - gnunet


From: gnunet
Subject: [GNUnet-SVN] r38153 - gnunet
Date: Thu, 13 Oct 2016 03:51:27 +0200

Author: dold
Date: 2016-10-13 03:51:27 +0200 (Thu, 13 Oct 2016)
New Revision: 38153

Modified:
   gnunet/configure.ac
Log:
don't even check for postgres when building for taler, since it breaks the build

Modified: gnunet/configure.ac
===================================================================
--- gnunet/configure.ac 2016-10-13 01:22:24 UTC (rev 38152)
+++ gnunet/configure.ac 2016-10-13 01:51:27 UTC (rev 38153)
@@ -796,14 +796,16 @@
 
 # test for postgres
 postgres=false
-AX_LIB_POSTGRESQL([])
-if test "$found_postgresql" = "yes"; then
-  CFLAGS="$CFLAGS $POSTGRESQL_CPPFLAGS"
-  CPPFLAGS="$CPPFLAGS $POSTGRESQL_CPPFLAGS"
-  AC_CHECK_HEADERS([libpq-fe.h],
-    postgres=true)
+# even running the check for postgres breaks emscripten ...
+if test "$taler_only" != yes; then
+  AX_LIB_POSTGRESQL([])
+  if test "$found_postgresql" = "yes"; then
+    CFLAGS="$CFLAGS $POSTGRESQL_CPPFLAGS"
+    CPPFLAGS="$CPPFLAGS $POSTGRESQL_CPPFLAGS"
+    AC_CHECK_HEADERS([libpq-fe.h],
+      postgres=true)
+  fi
 fi
-
 AM_CONDITIONAL(HAVE_POSTGRESQL, test x$postgres = xtrue)
 
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]