From: Ismo Puustinen Date: Fri, 4 Jan 2013 09:15:18 +0000 (+0200) Subject: build: require a recent enough version of ecore. X-Git-Tag: accepted/2.0alpha/20130115.171239~42^2^2~13 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0d27f50824de3ee0f8ed336635b6e3321039f118;p=profile%2Fivi%2Fmurphy.git build: require a recent enough version of ecore. --- diff --git a/configure.ac b/configure.ac index 0dc7a76..a3889da 100644 --- a/configure.ac +++ b/configure.ac @@ -188,8 +188,10 @@ AC_ARG_ENABLE(ecore, [ --enable-ecore enable EFL/ecore mainloop support], [enable_ecore=$enableval], [enable_ecore=auto]) + if test "$enable_ecore" != "no"; then - PKG_CHECK_MODULES(ECORE, ecore, + # We are using features which are present only at ecore 1.2 onwards. + PKG_CHECK_MODULES(ECORE, ecore >= 1.2, [have_ecore=yes], [have_ecore=no]) if test "$have_ecore" = "no" -a "$enable_ecore" = "yes"; then AC_MSG_ERROR([EFL/ecore development libraries not found.])