gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [gnurl] 94/256: configure: Handle "MultiSSL" specially When


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 94/256: configure: Handle "MultiSSL" specially When versioning symbols
Date: Fri, 06 Oct 2017 19:43:05 +0200

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

ng0 pushed a commit to branch master
in repository gnurl.

commit a330bab353fb1f987c61806c9bbc6a1fc2103d1e
Author: Johannes Schindelin <address@hidden>
AuthorDate: Thu Aug 24 22:33:19 2017 +0200

    configure: Handle "MultiSSL" specially When versioning symbols
    
    There is a mode in which libcurl is compiled with versioned symbols,
    depending on the active SSL backend.
    
    When multiple SSL backends are active, it does not make sense to favor
    one over the others, so let's not: introduce a new prefix for the case
    where multiple SSL backends are compiled into cURL.
    
    Signed-off-by: Johannes Schindelin <address@hidden>
---
 configure.ac | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/configure.ac b/configure.ac
index e6c72f358..20b056499 100755
--- a/configure.ac
+++ b/configure.ac
@@ -2796,7 +2796,9 @@ AC_HELP_STRING([--disable-versioned-symbols], [Disable 
versioned symbols in shar
         AC_MSG_WARN([You need an ld version supporting the --version-script 
option])
     else
         AC_MSG_RESULT(yes)
-        if test "x$OPENSSL_ENABLED" = "x1"; then
+        if test "x$CURL_WITH_MULTI_SSL" = "x1"; then
+          versioned_symbols_flavour="MULTISSL_"
+        elif test "x$OPENSSL_ENABLED" = "x1"; then
           versioned_symbols_flavour="OPENSSL_"
         elif test "x$GNUTLS_ENABLED" = "x1"; then
           versioned_symbols_flavour="GNUTLS_"

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



reply via email to

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