From e7b2ee2ddc17c7ee869b9c87dc67cd603867c237 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Tue, 19 Apr 2016 15:11:10 +0200 Subject: curl header detection --- configure.ac | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 7b92fd7b7..52af3e4c5 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 -- cgit v1.2.3