gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [gnurl] 47/173: gnutls: check for alpn and ocsp in configur


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 47/173: gnutls: check for alpn and ocsp in configure
Date: Fri, 24 Feb 2017 14:01:09 +0100

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

ng0 pushed a commit to annotated tag gnurl-7.53.1
in repository gnurl.

commit 7ba8020c467936283661357d21fe142f2bc48933
Author: Marcus Hoffmann <address@hidden>
AuthorDate: Wed Jan 11 14:42:41 2017 +0100

    gnutls: check for alpn and ocsp in configure
    
    Check for presence of gnutls_alpn_* and gnutls_ocsp_* functions during
    configure instead of relying on the version number.  GnuTLS has options
    to turn these features off and we ca just work with with such builds
    like we work with older versions.
    
    Signed-off-by: Marcus Hoffmann <address@hidden>
    
    Closes #1204
---
 configure.ac    | 2 +-
 lib/vtls/gtls.c | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/configure.ac b/configure.ac
index 65dac55bc..fa44787ef 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1847,7 +1847,7 @@ if test "$curl_ssl_msg" = "$init_ssl_msg"; then
             AC_MSG_NOTICE([Added $gtlslib to LD_LIBRARY_PATH])
           fi
         fi
-        AC_CHECK_FUNCS(gnutls_certificate_set_x509_key_file2)
+        AC_CHECK_FUNCS([gnutls_certificate_set_x509_key_file2 
gnutls_alpn_set_protocols gnutls_ocsp_req_init])
       fi
 
     fi
diff --git a/lib/vtls/gtls.c b/lib/vtls/gtls.c
index 2b539380d..a992f9994 100644
--- a/lib/vtls/gtls.c
+++ b/lib/vtls/gtls.c
@@ -92,11 +92,11 @@ static bool gtls_inited = FALSE;
 #    define GNUTLS_MAPS_WINSOCK_ERRORS 1
 #  endif
 
-#  if (GNUTLS_VERSION_NUMBER >= 0x030200)
+#  if HAVE_GNUTLS_ALPN_SET_PROTOCOLS
 #    define HAS_ALPN
 #  endif
 
-#  if (GNUTLS_VERSION_NUMBER >= 0x03020d)
+#  if HAVE_GNUTLS_OCSP_REQ_INIT
 #    define HAS_OCSP
 #  endif
 

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



reply via email to

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