summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS2
-rw-r--r--m4/hooks.m46
2 files changed, 5 insertions, 3 deletions
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")