From ae68bd7cfe8e5329a13f6836f4d02251a4ac4e82 Mon Sep 17 00:00:00 2001 From: Marcello Stanisci Date: Wed, 18 Oct 2017 09:39:37 +0200 Subject: fix --with-libcurl and --with-libgnurl options; they used to ignore the given path. --- configure.ac | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configure.ac b/configure.ac index 65efe78a8..f9eb7fa7e 100644 --- a/configure.ac +++ b/configure.ac @@ -317,6 +317,8 @@ AM_CONDITIONAL(HAVE_POSTGRESQL, test x$postgres = xtrue) LIBGNURL_CHECK_CONFIG(,7.34.0,gnurl=1,gnurl=0) if test "$gnurl" = 1 then + LDFLAGS="-L$with_libgnurl/lib $LDFLAGS" + CPPFLAGS="-I$with_libgnurl/include $CPPFLAGS" AM_CONDITIONAL(HAVE_LIBGNURL, [true]) AC_DEFINE([HAVE_LIBGNURL],[1],[Have libgnurl]) else @@ -327,6 +329,8 @@ fi LIBCURL_CHECK_CONFIG(,7.34.0,[curl=true],[curl=false]) if test "x$curl" = xtrue then + LDFLAGS="-L$with_libcurl/lib $LDFLAGS" + CPPFLAGS="-I$with_libcurl/include $CPPFLAGS" AC_CHECK_HEADERS([curl/curl.h], AC_CHECK_DECLS(CURLINFO_TLS_SESSION,[curl=true],[curl=false],[[#include ]]), [curl=false]) -- cgit v1.2.3