Windows can have both GnuTLS and OpenSSL installed too.
authorcaro <caro@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Fri, 25 Jun 2010 07:57:08 +0000 (07:57 +0000)
committercaro <caro@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Fri, 25 Jun 2010 07:57:08 +0000 (07:57 +0000)
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/eet@49852 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

configure.ac

index b548f10..1d6c899 100644 (file)
@@ -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