Eina: fix requirements and a comment message

SVN revision: 67515
This commit is contained in:
Vincent Torri 2012-01-24 22:05:46 +00:00
parent 7e8b2681c9
commit 78c73ea97a
1 changed files with 4 additions and 4 deletions

View File

@ -316,7 +316,7 @@ case "$host_os" in
mingw*) mingw*)
PKG_CHECK_MODULES([EVIL], [evil >= 1.0.0]) PKG_CHECK_MODULES([EVIL], [evil >= 1.0.0])
AC_DEFINE([HAVE_EVIL], [1], [Set to 1 if evil package is installed]) AC_DEFINE([HAVE_EVIL], [1], [Set to 1 if evil package is installed])
requirement_eina="evil" requirement_eina="${requirement_eina} evil"
EFL_EINA_BUILD="-DEFL_EINA_BUILD" EFL_EINA_BUILD="-DEFL_EINA_BUILD"
;; ;;
esac esac
@ -387,8 +387,8 @@ EFL_COMPILER_FLAG([-Wshadow])
case "$host_vendor" in case "$host_vendor" in
ps3*) ps3*)
PKG_CHECK_MODULES([ESCAPE], [escape]) PKG_CHECK_MODULES([ESCAPE], [escape])
AC_DEFINE(HAVE_ESCAPE, 1, [Set to 1 if evil package is installed]) AC_DEFINE(HAVE_ESCAPE, 1, [Set to 1 if Escape package is installed])
requirement_eina="escape" requirement_eina="${requirement_eina} escape"
EINA_CFLAGS="${ESCAPE_CFLAGS} ${EINA_CFLAGS}" EINA_CFLAGS="${ESCAPE_CFLAGS} ${EINA_CFLAGS}"
;; ;;
esac esac
@ -781,7 +781,7 @@ if test -n "$CXX" && test "x$enable_benchmark" = "xyes" ; then
fi fi
AM_CONDITIONAL([CITYHASH_BENCH], [test -n "$CXX" && test "x$enable_benchmark" = "xyes"]) AM_CONDITIONAL([CITYHASH_BENCH], [test -n "$CXX" && test "x$enable_benchmark" = "xyes"])
AC_SUBST(requirement_eina) AC_SUBST([requirement_eina])
### Build and install examples ### Build and install examples
EFL_CHECK_BUILD_EXAMPLES([enable_build_examples="yes"], [enable_build_examples="no"]) EFL_CHECK_BUILD_EXAMPLES([enable_build_examples="yes"], [enable_build_examples="no"])