]> git.ipfire.org Git - thirdparty/gnutls.git/commitdiff
the openssl compatibility library isn't built by default
authorNikos Mavrogiannopoulos <nmav@gnutls.org>
Sat, 25 Oct 2014 08:36:13 +0000 (10:36 +0200)
committerNikos Mavrogiannopoulos <nmav@gnutls.org>
Sat, 25 Oct 2014 08:36:16 +0000 (10:36 +0200)
NEWS
m4/hooks.m4

diff --git a/NEWS b/NEWS
index 747a5c5ae61993dd1bb54e612b8b935077879d73..d2917ded82e2d5a3a324db7678bb724932d08335 100644 (file)
--- 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.
 
index 143139407fb8acb5f295c82a6dc3b77b4a34f49a..ad4877dd409d538e1c28aa95dca615e3ce372102 100644 (file)
@@ -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")