exchange

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

commit 5740f5b63921c3a4012007f84da2670634b7d28a
parent 335f82d081506194b451f7131f2083b368203b7a
Author: Christian Grothoff <christian@grothoff.org>
Date:   Sun, 12 May 2019 21:37:13 +0200

replace if with AS_IF (#5709, wip)

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

diff --git a/configure.ac b/configure.ac @@ -191,15 +191,14 @@ LIBS_SAVE=$LIBS LIBGNURL_CHECK_CONFIG(,7.34.0,gnurl=1,gnurl=0) LIBCURL_CHECK_CONFIG(,7.34.0,[curl=1],[curl=0]) -if test "x$curl" = x1 -then +AS_IF([test "x$curl" = x1],[ AC_CHECK_HEADER([curl/curl.h], AC_CHECK_DECLS(CURLINFO_TLS_SESSION,[curl=1],[curl=0],[[#include <curl/curl.h>]]), [curl=0]) # need libcurl-gnutls.so, everything else is not acceptable AC_CHECK_LIB([curl-gnutls],[curl_easy_getinfo],,[curl=0]) # cURL must support CURLINFO_TLS_SESSION, version >= 7.34 -fi +]) # libcurl and libgnurl should be mutually exclusive AS_IF([test "$gnurl" = 1],