diff options
author | Christian Grothoff <christian@grothoff.org> | 2019-05-12 21:37:13 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2019-05-12 21:48:16 +0200 |
commit | 5740f5b63921c3a4012007f84da2670634b7d28a (patch) | |
tree | a8091b48ae5a5f4a1c6b9661a6d648fd961836e4 /configure.ac | |
parent | 335f82d081506194b451f7131f2083b368203b7a (diff) |
replace if with AS_IF (#5709, wip)
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 17a756020..8cdfa4ccf 100644 --- 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], |