From 0f44cbd30e3b81ca59a1742b3def9a42f7d1bc1a Mon Sep 17 00:00:00 2001 From: Cedric BAIL Date: Fri, 21 Sep 2012 13:08:51 +0000 Subject: [PATCH] ecore: fix build without Ecore_Con support. SVN revision: 76966 --- legacy/ecore/configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/legacy/ecore/configure.ac b/legacy/ecore/configure.ac index d2012a73e1..fa8ae0ae37 100644 --- a/legacy/ecore/configure.ac +++ b/legacy/ecore/configure.ac @@ -1511,14 +1511,12 @@ if test "x${have_ecore_con}" = "xyes" ; then if test "x${have_ipv6}" = "xyes" ; then AC_DEFINE(HAVE_IPV6, 1, [Define if IPV6 is supported]) fi - AM_CONDITIONAL([HAVE_IPV6], [test "x${have_ipv6}" = "xyes"]) if test "x${have_eet}" = "xyes" ; then requirements_ecore_con="eet > 1.7 ${requirements_ecore_con}" have_ecore_con_eet="yes" AC_DEFINE(ECORE_HAVE_EET, 1, [Define if Ecore_Con Eet_Connection helper is supported]) fi - AM_CONDITIONAL([ECORE_HAVE_EET], [test "x${have_ecore_con_eet}" = "xyes"]) ECORE_CHECK_CURL([${want_curl}], [ @@ -1555,6 +1553,8 @@ if test "x${have_ecore_con}" = "xyes" ; then [have_cares="no"]) fi +AM_CONDITIONAL([HAVE_IPV6], [test "x${have_ipv6}" = "xyes"]) +AM_CONDITIONAL([ECORE_HAVE_EET], [test "x${have_ecore_con_eet}" = "xyes"]) EFL_CHECK_COMPILER_FLAGS([ECORE_CON], [-Wno-override-init -Wno-initializer-overrides])