merchant

Merchant backend to process payments, run by merchants
Log | Files | Refs | Submodules | README | LICENSE

commit 109d6e5be0867df6b5fd3e8b135e5123dd91b823
parent 0b14a3f07166cceac1c2f6993c96b677f2fdae26
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date:   Mon, 19 Mar 2018 13:37:16 +0100

fix parentheses.

Diffstat:
Mconfigure.ac | 8+++++++-
1 file changed, 7 insertions(+), 1 deletion(-)

diff --git 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)