From: Simon Josefsson Date: Thu, 18 Jun 2009 20:26:03 +0000 (+0200) Subject: Fix --disable-openssl-compatibility parameter. X-Git-Tag: gnutls_2_9_2~61^2~8 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1fd7d3a1ce4a9dee7e38d732e88a8105b494d607;p=thirdparty%2Fgnutls.git Fix --disable-openssl-compatibility parameter. Reported by Matthias Drochner in . --- 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") ])