efl: always be strict on dependency checking.

SVN revision: 80498
devs/devilhorns/wayland_egl
Gustavo Sverzut Barbieri 11 years ago
parent 4df5715e0e
commit cc2e0f63d4
  1. 4
      m4/evas_check_engine.m4
  2. 4
      m4/evas_check_loader.m4

@ -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])

@ -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])

Loading…
Cancel
Save