diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2014-10-25 10:36:13 +0200 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2014-10-25 10:36:16 +0200 |
commit | 4aa59d7daa95f7ee40dfeb61fdfa331a1d33eb63 (patch) | |
tree | b5f90b81e8c74c79e5ba319bde755c569890fbc8 /m4 | |
parent | 1774f3607c70fe79af61c14a131145bea2a9ce9b (diff) | |
download | gnutls-4aa59d7daa95f7ee40dfeb61fdfa331a1d33eb63.tar.gz |
the openssl compatibility library isn't built by default
Diffstat (limited to 'm4')
-rw-r--r-- | m4/hooks.m4 | 6 |
1 files changed, 3 insertions, 3 deletions
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") |