From: Rafael Antognolli Date: Wed, 5 Dec 2012 16:33:37 +0000 (+0000) Subject: ecore: Don't check ecore-con dependencies if there are none. X-Git-Tag: submit/devel/efl/20131022.203902~3093 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=518982f15c7fdd107d6819b40ba5360e0bb252a9;p=platform%2Fupstream%2Fefl.git ecore: Don't check ecore-con dependencies if there are none. "pkg-config --exists " will return false, thus failing the configure phase. Not sure if building ecore-con without curl makes sense though. SVN revision: 80265 --- diff --git a/configure.ac b/configure.ac index 3d75790..448838b 100644 --- a/configure.ac +++ b/configure.ac @@ -2368,7 +2368,9 @@ fi AM_CONDITIONAL([HAVE_CARES], [test "x${have_cares}" = "xyes"]) -PKG_CHECK_MODULES([ECORE_CON], [${requirements_pc_deps_ecore_con}]) +if test "x${requirements_pc_deps_ecore_con}" != "x" ; then + PKG_CHECK_MODULES([ECORE_CON], [${requirements_pc_deps_ecore_con}]) +fi case "$host_os" in mingw32ce*)