[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[taler-exchange] 02/02: fix quoting bug that breaks build on autotools 2
From: |
gnunet |
Subject: |
[taler-exchange] 02/02: fix quoting bug that breaks build on autotools 2.70+ |
Date: |
Mon, 04 Jan 2021 17:45:30 +0100 |
This is an automated email from the git hooks/post-receive script.
dold pushed a commit to branch master
in repository exchange.
commit 2bd118007e177583a637274c59a9481d439ffd30
Author: Florian Dold <florian@dold.me>
AuthorDate: Mon Jan 4 17:45:23 2021 +0100
fix quoting bug that breaks build on autotools 2.70+
---
configure.ac | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/configure.ac b/configure.ac
index b6fefd94..b47aeb98 100644
--- a/configure.ac
+++ b/configure.ac
@@ -182,11 +182,11 @@ LIBS_SAVE=$LIBS
LIBGNURL_CHECK_CONFIG(,7.34.0,gnurl=1,gnurl=0)
LIBCURL_CHECK_CONFIG(,7.34.0,[curl=1],[curl=0])
+# cURL must support CURLINFO_TLS_SESSION, version >= 7.34
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>]]),
+ [AC_CHECK_DECLS(CURLINFO_TLS_SESSION,[curl=1],[curl=0],[[#include
<curl/curl.h>]])],
[curl=0])
- # cURL must support CURLINFO_TLS_SESSION, version >= 7.34
])
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.