summaryrefslogtreecommitdiff
path: root/libextra
diff options
context:
space:
mode:
authorSimon Josefsson <simon@josefsson.org>2008-11-18 00:12:06 +0100
committerSimon Josefsson <simon@josefsson.org>2008-11-18 00:12:06 +0100
commit3ba89c52eb71b13af83c2671bfea93cfa12d7e3e (patch)
treeeb6f62045a2b41afe261f8b34dc965ab04e58bbc /libextra
parent07fc8f24f8ac240796045950d499e2db3cc43b2f (diff)
downloadgnutls-3ba89c52eb71b13af83c2671bfea93cfa12d7e3e.tar.gz
Print Openssl status.
Diffstat (limited to 'libextra')
-rw-r--r--libextra/m4/hooks.m412
1 files changed, 4 insertions, 8 deletions
diff --git a/libextra/m4/hooks.m4 b/libextra/m4/hooks.m4
index 6d7347f110..fdbd82f853 100644
--- a/libextra/m4/hooks.m4
+++ b/libextra/m4/hooks.m4
@@ -26,12 +26,8 @@ AC_DEFUN([LIBGNUTLS_EXTRA_HOOKS],
AC_ARG_ENABLE(openssl-compatibility,
AS_HELP_STRING([--disable-openssl-compatibility],
[disable the OpenSSL compatibility support]),
- ac_enable_openssl=$withval,
- ac_enable_openssl=yes)
- if test x$ac_enable_openssl != xno; then
- AC_MSG_RESULT(no)
- else
- AC_MSG_RESULT(yes)
- fi
- AM_CONDITIONAL(ENABLE_OPENSSL, test "$ac_enable_openssl" = "yes")
+ enable_openssl=$withval,
+ enable_openssl=yes)
+ AC_MSG_RESULT($enable_openssl)
+ AM_CONDITIONAL(ENABLE_OPENSSL, test "$enable_openssl" = "yes")
])