gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [taler-exchange] branch master updated: fix --with-libcurl


From: gnunet
Subject: [GNUnet-SVN] [taler-exchange] branch master updated: fix --with-libcurl and --with-libgnurl options; they used to ignore the given path.
Date: Wed, 18 Oct 2017 09:40:10 +0200

This is an automated email from the git hooks/post-receive script.

marcello pushed a commit to branch master
in repository exchange.

The following commit(s) were added to refs/heads/master by this push:
     new ae68bd7  fix --with-libcurl and --with-libgnurl options; they used to 
ignore the given path.
ae68bd7 is described below

commit ae68bd7cfe8e5329a13f6836f4d02251a4ac4e82
Author: Marcello Stanisci <address@hidden>
AuthorDate: Wed Oct 18 09:39:37 2017 +0200

    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 65efe78..f9eb7fa 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/curl.h>]]),
    [curl=false])

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]