Skip to content

Commit

Permalink
Fix --disable-openssl-compatibility parameter.
Browse files Browse the repository at this point in the history
  • Loading branch information
jas4711 committed Jun 18, 2009
1 parent a2b81ed commit 1fd7d3a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libextra/m4/hooks.m4
Original file line number Diff line number Diff line change
Expand Up @@ -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")
])

0 comments on commit 1fd7d3a

Please sign in to comment.