From 3a97efa8f888c8f5a5e36ad9ca004b55e0cca2c6 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Thu, 5 Jun 2008 20:26:00 +0200 Subject: [PATCH] Make GNU TLS the default choice for SSL --- configure.ac | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 84c1bf3..edd00c2 100644 --- a/configure.ac +++ b/configure.ac @@ -60,7 +60,7 @@ dnl dnl ------ OpenSSL AC_SUBST([SSL_CFLAGS]) AC_SUBST([SSL_LIBS]) -openssl=default +openssl=no sslver=no AC_ARG_WITH([openssl], [ --with-openssl[=PREFIX] OpenSSL library in PREFIX], [openssl=$withval]) SSL_CFLAGS="" @@ -123,8 +123,8 @@ if test "$openssl" != "no"; then fi fi dnl ------ GNU TLS -gnutls=no -AC_ARG_WITH([gnutls], [ --with-gnutls[=PREFIX] GNU TLS library in PREFIX], [gnutls=$withval]) +gnutls=default +AC_ARG_WITH([gnutls], [ --with-gnutls[=PREFIX] GNU TLS library in PREFIX], [gnutls=$withval]) if test "$gnutls" != "no" -a "$sslver" = "no"; then gnutlsver=no if test "$gnutls" != "yes" -a "$gnutls" != "default"; then -- 1.7.10.4