From 355108666c89bf2a637610b0f7a81974d1f312e4 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sun, 26 Oct 2008 22:03:26 +0100 Subject: configure.ac: fix "xyes: command not found" Due to a missing "test", the "xyes" token was interpreted as a command. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index ee129f5ac..0fbb4f16c 100644 --- a/configure.ac +++ b/configure.ac @@ -336,7 +336,7 @@ if test x$enable_curl = xyes; then fi AM_CONDITIONAL(HAVE_CURL, test x$enable_curl = xyes) -if test x$enable_shout_ogg = xyes || x$enable_shout_mp3 = xyes; then +if test x$enable_shout_ogg = xyes || test x$enable_shout_mp3 = xyes; then enable_shout=yes PKG_CHECK_MODULES([SHOUT], [shout], AC_DEFINE(HAVE_SHOUT, 1, [Define to enable libshout support]), -- cgit v1.2.3