diff options
author | Christian Grothoff <christian@grothoff.org> | 2016-04-21 20:00:40 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2016-04-21 20:00:40 +0200 |
commit | 21188ca703d05211e8d4d3ae9bd22500f53915ac (patch) | |
tree | a0dbae4cd9a23ef810fa38af66a6359bd8da3ebc /configure.ac | |
parent | 77e9e3a7f65db0940a0797d9b12ba883bbdae48e (diff) | |
parent | 1d43437991e52629a0dcc1ce97bb99b791ca6927 (diff) |
Merge branch 'master' of ssh://taler.net:/var/git/exchange
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 7b92fd7b..52af3e4c 100644 --- a/configure.ac +++ b/configure.ac @@ -241,6 +241,16 @@ else AC_DEFINE([HAVE_LIBCURL],[1],[Have CURL]) fi + +# Check for curl/curl.h and gnurl/curl.h so we can use #ifdef +# HAVE_CURL_CURL_H later (the above LIBCURL_CHECK_CONFIG accepted +# *either* header set). +AC_CHECK_HEADERS([curl/curl.h],, + curl=false + AC_CHECK_HEADERS([gnurl/curl.h],, + gnurl=false)) + + # libgnurl if test "x$gnurl" = "x0" then |