efl: always be strict on dependency checking.

SVN revision: 80498
This commit is contained in:
Gustavo Sverzut Barbieri 2012-12-07 20:08:28 +00:00
parent 4df5715e0e
commit cc2e0f63d4
2 changed files with 4 additions and 4 deletions

View File

@ -691,8 +691,8 @@ if test "x${want_engine}" = "xyes" -o "x${want_engine}" = "xstatic" -o "x${want_
m4_default([EVAS_CHECK_ENGINE_DEP_]m4_defn([UP]))(DOWN, $3, ${want_engine}, [have_engine="yes"], [have_engine="no"])
fi
if test "x${have_engine}" = "xno" -a "x${want_engine}" = "xyes" -a "x${use_strict}" = "xyes" ; then
AC_MSG_ERROR([$4 dependencies not found (strict dependencies checking)])
if test "x${have_engine}" = "xno" -a "x${want_engine}" = "xyes"; then
AC_MSG_ERROR([$4 dependencies not found])
fi
AC_MSG_CHECKING([whether $4 rendering backend will be built])

View File

@ -442,8 +442,8 @@ if test "x${want_loader}" = "xyes" -o "x${want_loader}" = "xstatic" -o "x${want_
m4_default([EVAS_CHECK_LOADER_DEP_]m4_defn([UP]))(DOWN, ${want_loader}, [have_loader="yes"], [have_loader="no"])
fi
if test "x${have_loader}" = "xno" -a "x${want_loader}" = "xyes" -a "x${use_strict}" = "xyes" ; then
AC_MSG_ERROR([$1 dependencies not found (strict dependencies checking)])
if test "x${have_loader}" = "xno" -a "x${want_loader}" = "xyes"; then
AC_MSG_ERROR([$1 dependencies not found])
fi
AC_MSG_CHECKING([whether $1 image loader will be built])