aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Fandrich <dan@coneharvesters.com>2005-07-27 18:22:21 +0000
committerDan Fandrich <dan@coneharvesters.com>2005-07-27 18:22:21 +0000
commite49a7e361c91771fc8650ff97ad97fc0a334ecc8 (patch)
tree39519af45c137eb2b7cb30ca0b268992cf386fcf
parent6e87cf5b30ac44447315f66ffa164e8eec8df831 (diff)
Fixed --without-gnutls
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 317d08b59..32c111cdf 100644
--- a/configure.ac
+++ b/configure.ac
@@ -977,7 +977,7 @@ dnl FIX: only check for GnuTLS if OpenSSL is not enabled
dnl ----------------------------------------------------
dnl Default to compiler & linker defaults for GnuTLS files & libraries.
-OPT_GNUTLS=off
+OPT_GNUTLS=no
AC_ARG_WITH(gnutls,dnl
AC_HELP_STRING([--with-gnutls=PATH],[where to look for GnuTLS, PATH points to the installation root (default: /usr/local/)])
@@ -986,7 +986,7 @@ AC_HELP_STRING([--without-gnutls], [disable GnuTLS detection]),
if test "$OPENSSL_ENABLED" != "1"; then
- if test X"$OPT_GNUTLS" != Xoff; then
+ if test X"$OPT_GNUTLS" != Xno; then
if test "x$OPT_GNUTLS" = "xyes"; then
check=`libgnutls-config --version 2>/dev/null`
if test -n "$check"; then