gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [gnurl] 102/125: configure.ac: append extra linker flags in


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 102/125: configure.ac: append extra linker flags instead of prepending them.
Date: Sun, 21 Jan 2018 23:42:37 +0100

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

ng0 pushed a commit to branch master
in repository gnurl.

commit 0616dfa1e08c25ec8ff0f06c014bd3836b365049
Author: Dan Johnson <address@hidden>
AuthorDate: Thu Dec 28 18:16:26 2017 +0000

    configure.ac: append extra linker flags instead of prepending them.
    
    Link order should list libraries after the libraries that use them,
    so when we're guessing that we might also need to add -ldl in order
    to use -lssl, we should add -ldl after -lssl.
    
    Closes https://github.com/curl/curl/pull/2234
---
 configure.ac | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/configure.ac b/configure.ac
index 5292937bb..c223a0436 100755
--- a/configure.ac
+++ b/configure.ac
@@ -1656,7 +1656,7 @@ if test -z "$ssl_backends" -o "x$OPT_SSL" != xno &&
 
        dnl still no, but what about with -ldl?
        AC_MSG_CHECKING([OpenSSL linking with -ldl])
-       LIBS="-ldl $LIBS"
+       LIBS="$LIBS -ldl"
        AC_TRY_LINK(
        [
          #include <openssl/err.h>
@@ -1673,7 +1673,7 @@ if test -z "$ssl_backends" -o "x$OPT_SSL" != xno &&
          dnl ok, so what about bouth -ldl and -lpthread?
 
          AC_MSG_CHECKING([OpenSSL linking with -ldl and -lpthread])
-         LIBS="-lpthread $LIBS"
+         LIBS="$LIBS -lpthread"
          AC_TRY_LINK(
          [
            #include <openssl/err.h>

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



reply via email to

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