diff options
author | Simon Josefsson <simon@josefsson.org> | 2009-06-18 22:26:03 +0200 |
---|---|---|
committer | Simon Josefsson <simon@josefsson.org> | 2009-06-18 22:26:03 +0200 |
commit | 1fd7d3a1ce4a9dee7e38d732e88a8105b494d607 (patch) | |
tree | d5493b55a06172b5b4a3c5bffa54268840f06d73 /libextra | |
parent | a2b81ed1e8c63d703a559b031e7b31136c9db925 (diff) | |
download | gnutls-1fd7d3a1ce4a9dee7e38d732e88a8105b494d607.tar.gz |
Fix --disable-openssl-compatibility parameter.
Reported by Matthias Drochner <M.Drochner@fz-juelich.de> in
<http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3646>.
Diffstat (limited to 'libextra')
-rw-r--r-- | libextra/m4/hooks.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libextra/m4/hooks.m4 b/libextra/m4/hooks.m4 index b9ee2dde68..c07504a3f6 100644 --- a/libextra/m4/hooks.m4 +++ b/libextra/m4/hooks.m4 @@ -22,11 +22,11 @@ AC_DEFUN([LIBGNUTLS_EXTRA_HOOKS], [ - AC_MSG_CHECKING([whether to disable OpenSSL compatibility layer]) + 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=$withval, enable_openssl=yes) + enable_openssl=$enableval, enable_openssl=yes) AC_MSG_RESULT($enable_openssl) AM_CONDITIONAL(ENABLE_OPENSSL, test "$enable_openssl" = "yes") ]) |