From: Nikos Mavrogiannopoulos Date: Sat, 25 Oct 2014 08:36:13 +0000 (+0200) Subject: the openssl compatibility library isn't built by default X-Git-Tag: gnutls_3_4_0~741 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4aa59d7daa95f7ee40dfeb61fdfa331a1d33eb63;p=thirdparty%2Fgnutls.git the openssl compatibility library isn't built by default --- diff --git a/NEWS b/NEWS index 747a5c5ae6..d2917ded82 100644 --- a/NEWS +++ b/NEWS @@ -32,6 +32,8 @@ GNUTLS_CERT_PURPOSE_MISMATCH is also introduced. ** libgnutls: Added support for the extended master secret (triple-handshake fix) following draft-ietf-tls-session-hash-02. +** libgnutls-openssl: it is no longer built by default. + ** certtool: Added --p8-info option, which will print PKCS #8 information even if the password is not available. diff --git a/m4/hooks.m4 b/m4/hooks.m4 index 143139407f..ad4877dd40 100644 --- a/m4/hooks.m4 +++ b/m4/hooks.m4 @@ -23,9 +23,9 @@ AC_DEFUN([LIBGNUTLS_EXTRA_HOOKS], [ AC_MSG_CHECKING([whether to build OpenSSL compatibility layer]) AC_ARG_ENABLE(openssl-compatibility, - AS_HELP_STRING([--disable-openssl-compatibility], - [disable the OpenSSL compatibility support]), - enable_openssl=$enableval, enable_openssl=yes) + AS_HELP_STRING([--enable-openssl-compatibility], + [enable the OpenSSL compatibility library]), + enable_openssl=$enableval, enable_openssl=no) AC_MSG_RESULT($enable_openssl) AM_CONDITIONAL(ENABLE_OPENSSL, test "$enable_openssl" = "yes")