diff options
author | Florian Dold <florian.dold@gmail.com> | 2016-10-13 01:51:27 +0000 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2016-10-13 01:51:27 +0000 |
commit | b4ac24f09d494d9aae11a332f1ee6c23857f45a2 (patch) | |
tree | 3ca2f45eb7280302961960cf2d08a800c86ba42b /configure.ac | |
parent | 85f224fdf49a8663f248eeeac529196f98637f06 (diff) |
don't even check for postgres when building for taler, since it breaks the build
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/configure.ac b/configure.ac index bd230860d4..50bc45594b 100644 --- a/configure.ac +++ b/configure.ac @@ -796,14 +796,16 @@ AC_SUBST(SQLITE_LDFLAGS) # 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) |