discomfitor pushed a commit to branch master. http://git.enlightenment.org/apps/empc.git/commit/?id=570147c86690c00470de61f65e6349e19de001b2
commit 570147c86690c00470de61f65e6349e19de001b2 Author: Mike Blumenkrantz <[email protected]> Date: Thu Jan 22 19:08:21 2015 -0500 fix elyr-disabled (or no maelstrom) build --- configure.ac | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 9d3151a..9b89cb9 100644 --- a/configure.ac +++ b/configure.ac @@ -150,12 +150,12 @@ if test "x$want_id3_loader" != "xno" ; then fi AM_CONDITIONAL([MOD_ID3_LOADER], [test "x$want_id3_loader" = "xyes"]) -want_elyr=yes +want_elyr=maybe AC_ARG_ENABLE([module-elyr], [AC_HELP_STRING([--disable-module-elyr], [disable elyr module. @<:@default=detect@:>@])], [want_elyr=$enableval], []) -if test "x$want_elyr" = "xyes" ; then - PKG_CHECK_MODULES([AZY], [azy]) +if test "x$want_elyr" != "xno" ; then + PKG_CHECK_MODULES([AZY], [azy], [want_elyr=yes], [want_elyr=no]) fi AM_CONDITIONAL([MOD_ELYR], [test "x$want_elyr" = "xyes"]) --
