gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [gnurl] 27/163: configure: add basic test of --with-ssl pre


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 27/163: configure: add basic test of --with-ssl prefix
Date: Sun, 05 Aug 2018 12:35:53 +0200

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

ng0 pushed a commit to branch master
in repository gnurl.

commit d353af001420574210605ba132dfd31a0e3876a5
Author: Daniel Stenberg <address@hidden>
AuthorDate: Wed May 23 14:26:49 2018 +0200

    configure: add basic test of --with-ssl prefix
    
    When given a prefix, the $PREFIX_OPENSSL/lib/openssl.pc or
    $PREFIX_OPENSSL/include/openssl/ssl.h files must be present or cause an
    error. Helps users detect when giving configure the wrong path.
    
    Reported-by: Oleg Pudeyev
    Assisted-by: Per Malmberg
    Fixes #2580
---
 configure.ac | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/configure.ac b/configure.ac
index 24e47aa33..c552c46ab 100755
--- a/configure.ac
+++ b/configure.ac
@@ -1591,9 +1591,11 @@ if test -z "$ssl_backends" -o "x$OPT_SSL" != xno &&
     dnl specify PKG_CONFIG_LIBDIR we're only looking where
     dnl the user told us to look
     OPENSSL_PCDIR="$OPT_SSL/lib/pkgconfig"
-    AC_MSG_NOTICE([PKG_CONFIG_LIBDIR will be set to "$OPENSSL_PCDIR"])
     if test -f "$OPENSSL_PCDIR/openssl.pc"; then
+      AC_MSG_NOTICE([PKG_CONFIG_LIBDIR will be set to "$OPENSSL_PCDIR"])
       PKGTEST="yes"
+    elif test ! -f "$PREFIX_OPENSSL/include/openssl/ssl.h"; then
+      AC_MSG_ERROR([$PREFIX_OPENSSL is a bad --with-ssl prefix!])
     fi
 
     dnl in case pkg-config comes up empty, use what we got

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



reply via email to

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