gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [gnurl] 120/163: configure: Add dependent libraries after c


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 120/163: configure: Add dependent libraries after crypto
Date: Sun, 05 Aug 2018 12:37:26 +0200

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

ng0 pushed a commit to branch master
in repository gnurl.

commit b0a365f8a0e58b0f1929abb1c60dad31d34c0c2a
Author: Max Dymond <address@hidden>
AuthorDate: Tue Jun 26 09:29:48 2018 +0100

    configure: Add dependent libraries after crypto
    
    The linker is pretty dumb and processes things left to right, keeping a
    tally of symbols it hasn't resolved yet. So, we need -ldl to appear
    after -lcrypto otherwise the linker won't find the dl functions.
    
    Closes #2684
---
 configure.ac | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/configure.ac b/configure.ac
index f38e1c0ce..d23be37c6 100755
--- a/configure.ac
+++ b/configure.ac
@@ -1657,7 +1657,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="$LIBS -ldl -lcrypto"
+       LIBS="$CLEANLIBS -lcrypto -ldl"
        AC_TRY_LINK(
        [
          #include <openssl/err.h>
@@ -1671,10 +1671,10 @@ if test -z "$ssl_backends" -o "x$OPT_SSL" != xno &&
        ],
        [
          AC_MSG_RESULT(no)
-         dnl ok, so what about bouth -ldl and -lpthread?
+         dnl ok, so what about both -ldl and -lpthread?
 
          AC_MSG_CHECKING([OpenSSL linking with -ldl and -lpthread])
-         LIBS="$CLEANLIBS -ldl -lpthread -lcrypto"
+         LIBS="$CLEANLIBS -lcrypto -ldl -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]