From 4a08d5b1b7e28d00380248f85d9371d6bb3e24bb Mon Sep 17 00:00:00 2001 From: caro Date: Fri, 25 Jun 2010 07:57:08 +0000 Subject: [PATCH] Windows can have both GnuTLS and OpenSSL installed too. git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eet@49852 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- configure.ac | 22 ++++++---------------- 1 file changed, 6 insertions(+), 16 deletions(-) diff --git a/configure.ac b/configure.ac index b548f10..1d6c899 100644 --- a/configure.ac +++ b/configure.ac @@ -53,20 +53,10 @@ AC_SUBST(release_info) ### Default options with respect to host -case "$host_os" in - mingw*) - want_gnutls="no" - want_openssl="no" - want_cipher="no" - want_signature="no" - ;; - *) - want_gnutls="auto" - want_openssl="auto" - want_cipher="yes" - want_signature="yes" - ;; -esac +want_gnutls="auto" +want_openssl="auto" +want_cipher="yes" +want_signature="yes" requirement_eet="" @@ -298,9 +288,9 @@ if test "x${want_openssl}" = "xyes" || test "x${want_openssl}" = "xauto" ; then fi if test "x${have_gnutls}" = "xyes" ; then - secure_layer="gnutls" + secure_layer="GnuTLS" elif test "x${have_openssl}" = "xyes" ; then - secure_layer="openssl" + secure_layer="OpenSSL" else secure_layer="no" fi -- 2.7.4