EET loader: Disable - broken

Among other things because it probably should call eet_init().
This commit is contained in:
Kim Woelders 2021-01-18 19:01:08 +01:00
parent c4750cbcb7
commit 1bcaeab5f9
1 changed files with 3 additions and 2 deletions

View File

@ -22,9 +22,9 @@ PKG_PROG_PKG_CONFIG
ani=yes
eet=auto
eet=no
AC_ARG_ENABLE(eet,
[ --disable-eet disable building the eet loader],
[ --enable-eet enable building the eet loader],
[
if test x$enableval = xno; then
eet=no
@ -49,6 +49,7 @@ dnl PKG_CHECK_MODULES(IMLIB2, imlib2)
found_eet=no
if test "x$eet" != "xno" ; then
AC_MSG_ERROR([*** Eet loader is broken ***])
PKG_CHECK_MODULES(EET, eet, found_eet=yes, found_eet=no)
fi
if test "x$eet$found_eet" = "xyesno" ; then