merchant

Merchant backend to process payments, run by merchants
Log | Files | Refs | Submodules | README | LICENSE

commit c3b391030121ba2cbfc13385d3ec25779a180671
parent 422fe6e45d89343225740e964b2d65d4f80e433b
Author: Florian Dold <florian.dold@gmail.com>
Date:   Tue, 19 Apr 2016 15:16:36 +0200

fix curl header detection

Diffstat:
Mconfigure.ac | 10++++++++++
1 file changed, 10 insertions(+), 0 deletions(-)

diff --git a/configure.ac b/configure.ac @@ -162,6 +162,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