gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [gnurl] 102/220: configure: avoid undefined check_for_ca_bu


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 102/220: configure: avoid undefined check_for_ca_bundle
Date: Thu, 12 Sep 2019 17:27:42 +0200

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

ng0 pushed a commit to branch master
in repository gnurl.

commit 4a962ff2189e8bdbcd79813d67e3af0f1c465f7c
Author: Carlo Marcelo Arenas Belón <address@hidden>
AuthorDate: Sat Aug 10 19:14:01 2019 -0700

    configure: avoid undefined check_for_ca_bundle
    
    instead of using a "greater than 0" test, check for variable being
    set, as it is always set to 1, and could be left unset if non of
    OPENSSL MBEDTLS GNUTLS WOLFSSL is being configured for.
    
    Closes #4213
---
 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure.ac b/configure.ac
index 1ddc3d601..020a0e08c 100755
--- a/configure.ac
+++ b/configure.ac
@@ -2633,7 +2633,7 @@ dnl 
**********************************************************************
 dnl Check for the CA bundle
 dnl **********************************************************************
 
-if test "$check_for_ca_bundle" -gt 0; then
+if test -n "$check_for_ca_bundle"; then
   CURL_CHECK_CA_BUNDLE
 fi
 

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



reply via email to

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