kwo pushed a commit to branch master. http://git.enlightenment.org/legacy/imlib2_loaders.git/commit/?id=1bcaeab5f9d486e85a7ad0a079a272647bf8ecc1
commit 1bcaeab5f9d486e85a7ad0a079a272647bf8ecc1 Author: Kim Woelders <k...@woelders.dk> Date: Mon Jan 18 19:01:08 2021 +0100 EET loader: Disable - broken Among other things because it probably should call eet_init(). --- configure.ac | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 05aac3a..a0197f5 100644 --- a/configure.ac +++ b/configure.ac @@ -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 --