exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit 90b8b6e8b14139af59504418285cc1c72a5fdae2
parent a1f289512eac8596bff88bbffc69c5a271324120
Author: Florian Dold <florian.dold@gmail.com>
Date:   Thu, 16 Aug 2018 12:54:58 +0200

use AS_IF instead of shell if

Otherwise autoconf macros won't be expanded properly when used inside
the 'if' body for the first time.

Diffstat:
Mconfigure.ac | 7+++----
1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/configure.ac b/configure.ac @@ -148,18 +148,17 @@ AS_IF([test $libgnunetjson != 1], # libcurl-gnutls LIBCURL_CHECK_CONFIG(,7.34.0,[curl=true],[curl=false]) -if test "x$curl" = xtrue -then +AS_IF([test "x$curl" = xtrue], [ LDFLAGS="-L$with_libcurl/lib $LDFLAGS" CPPFLAGS="-I$with_libcurl/include $CPPFLAGS" AC_CHECK_HEADERS([curl/curl.h], - AC_CHECK_DECLS(CURLINFO_TLS_SESSION,[curl=true],[curl=false],[[#include <curl/curl.h>]]), + [AC_CHECK_DECLS(CURLINFO_TLS_SESSION,[curl=true],[curl=false],[[#include <curl/curl.h>]])], [curl=false]) # need libcurl-gnutls.so, everything else is not acceptable AC_CHECK_LIB([curl-gnutls],[curl_easy_getinfo],,[curl=false]) # cURL must support CURLINFO_TLS_SESSION, version >= 7.34 +]) -fi if test x$curl = xfalse then AM_CONDITIONAL(HAVE_LIBCURL, false)