From 511156f37bbd1f0a8ae9deb98d2b3eea7586dfa1 Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Sun, 21 Jun 2015 11:06:11 +0000 Subject: support gnurl's curl.h being in include/gnurl/ OR include/curl/ --- m4/libgnurl.m4 | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'm4') diff --git a/m4/libgnurl.m4 b/m4/libgnurl.m4 index 69aa16605..da72e5e87 100644 --- a/m4/libgnurl.m4 +++ b/m4/libgnurl.m4 @@ -159,6 +159,22 @@ x=CURLOPT_STDERR; x=CURLOPT_VERBOSE; ])],libgnurl_cv_lib_gnurl_usable=yes,libgnurl_cv_lib_gnurl_usable=no) +# BEGIN Changes from original libcurl.m4: +# Give it a 2nd shot using 'gnurl/curl.h' + AC_LINK_IFELSE([AC_LANG_PROGRAM([#include ],[ +/* Try and use a few common options to force a failure if we are + missing symbols or can't link. */ +int x; +curl_easy_setopt(NULL,CURLOPT_URL,NULL); +x=CURL_ERROR_SIZE; +x=CURLOPT_WRITEFUNCTION; +x=CURLOPT_FILE; +x=CURLOPT_ERRORBUFFER; +x=CURLOPT_STDERR; +x=CURLOPT_VERBOSE; +])],libgnurl_cv_lib_gnurl_usable=yes) +# END Changes from original libcurl.m4: + CPPFLAGS=$_libgnurl_save_cppflags LIBS=$_libgnurl_save_libs unset _libgnurl_save_cppflags -- cgit v1.2.3