From: caro Date: Sat, 1 Nov 2008 18:11:27 +0000 (+0000) Subject: formatting, disable openssl by default on Windows XP X-Git-Tag: 1.0_branch~549 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1bb611bf13c5c8f0e06f51fa91e63d09e0bb9fed;p=profile%2Fivi%2Feet.git formatting, disable openssl by default on Windows XP git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eet@37379 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/configure.ac b/configure.ac index 8f017e2..0dbf64a 100644 --- a/configure.ac +++ b/configure.ac @@ -28,7 +28,7 @@ AC_SUBST(version_info) ### Default options with respect to host case "$host_os" in - mingw32ce* | cegcc*) + mingw* | cegcc*) want_openssl="no" want_cypher="no" want_signature="no" @@ -110,23 +110,43 @@ fi AC_SUBST(DEBUG_CFLAGS) -### Checks for libraries +### Checks for programs +AC_PROG_CC + +# doxygen program for documentation building -PKG_PROG_PKG_CONFIG +EFL_CHECK_DOXYGEN([build_doc="yes"], [build_doc="no"]) + + +### Checks for libraries # Evil library for compilation on Windows EFL_EET_BUILD="" case "$host_os" in mingw* | cegcc*) - PKG_CHECK_MODULES([EVIL], [evil]) - AC_DEFINE(HAVE_EVIL, 1, [Set to 1 if Evil library is installed]) - requirement_eet="evil ${requirement_eet}" - EFL_EET_BUILD="-DEFL_EET_BUILD" + PKG_CHECK_MODULES([EVIL], [evil]) + AC_DEFINE(HAVE_EVIL, 1, [Set to 1 if Evil library is installed]) + requirement_eet="evil ${requirement_eet}" + EFL_EET_BUILD="-DEFL_EET_BUILD" ;; esac AC_SUBST(EFL_EET_BUILD) +EET_LIBS="" +case "$host_os" in + mingw32ce*) + EET_LIBS="-lws2" + ;; + cegcc*) + EET_LIBS="-lws2" + ;; + mingw*) + EET_LIBS="-lws2_32" + ;; +esac +AC_SUBST(EET_LIBS) + # Eina library PKG_CHECK_MODULES(EINA, [eina-0]) @@ -140,7 +160,8 @@ if test "x${want_openssl}" = "xyes" -o "x${want_openssl}" = "xauto" ; then have_openssl="yes" AC_DEFINE(HAVE_OPENSSL, 1, [Have Openssl support]) requirement_eet="openssl ${requirement_eet}" - ], [have_openssl="no"]) + ], + [have_openssl="no"]) fi have_cypher="no" @@ -179,14 +200,6 @@ AC_CHECK_HEADER([fnmatch.h], [AC_MSG_ERROR([Cannot find fnmatch.h. Make sure your CFLAGS environment variable contains include lines for the location of this file. MinGW users: see the INSTALL file])]) -### Checks for programs -AC_PROG_CC - -# doxygen program for documentation building - -EFL_CHECK_DOXYGEN([build_doc="yes"], [build_doc="no"]) - - ### Checks for types @@ -243,20 +256,6 @@ AC_SUBST(EET_CFLAGS) ### Checks for linker characteristics -EET_LIBS="" -case "$host_os" in - mingw32ce*) - EET_LIBS="-lws2" - ;; - cegcc*) - EET_LIBS="-lws2" - ;; - mingw*) - EET_LIBS="-lws2_32" - ;; -esac -AC_SUBST(EET_LIBS) - lt_enable_auto_import="" case "$host_os" in mingw* | cegcc*)