summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcello Stanisci <stanisci.m@gmail.com>2018-03-19 13:37:16 +0100
committerMarcello Stanisci <stanisci.m@gmail.com>2018-03-19 13:37:16 +0100
commit109d6e5be0867df6b5fd3e8b135e5123dd91b823 (patch)
treec601867c1ae7e526547b432d84d75c70ec6bf29a
parent0b14a3f07166cceac1c2f6993c96b677f2fdae26 (diff)
downloadmerchant-109d6e5be0867df6b5fd3e8b135e5123dd91b823.tar.gz
merchant-109d6e5be0867df6b5fd3e8b135e5123dd91b823.tar.bz2
merchant-109d6e5be0867df6b5fd3e8b135e5123dd91b823.zip
fix parentheses.
-rw-r--r--configure.ac8
1 files changed, 7 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 33854615..6827218f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -231,11 +231,17 @@ AS_CASE([$with_twister],
[no], [AC_MSG_WARN([no twister-testing will be compiled])],
[LDFLAGS="-L$with_twister/lib $LDFLAGS"
CPPFLAGS="-I$with_twister/include $CPPFLAGS"])
+
+# This tries to include the twister even though
+# no --with-twister option was given. Shall it
+# be included only if the user explicitly gave
+# such option?
AC_CHECK_LIB(talertwistertesting,TALER_TESTING_run_twister,
[AC_CHECK_HEADER([taler/taler_twister_testing_lib.h],[twistertesting=1],,
[#ifdef HAVE_GNUNET_PLATFORM_H
#include <gnunet/platform.h>
- #endif])]
+ #endif
+ ])]
,,[-ltalerexchange -ltalerbank])
AM_CONDITIONAL(HAVE_TWISTER, test x$twistertesting = x1)