]> git.ipfire.org Git - thirdparty/gnutls.git/commitdiff
Fix --disable-openssl-compatibility parameter.
authorSimon Josefsson <simon@josefsson.org>
Thu, 18 Jun 2009 20:26:03 +0000 (22:26 +0200)
committerSimon Josefsson <simon@josefsson.org>
Thu, 18 Jun 2009 20:26:03 +0000 (22:26 +0200)
Reported by Matthias Drochner <M.Drochner@fz-juelich.de> in
<http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3646>.

libextra/m4/hooks.m4

index b9ee2dde688c980ee1eeeeddd6d96954d65f2dfd..c07504a3f64f9ecb0eacfe6034557b074ed8a64b 100644 (file)
 
 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")
 ])