Commit 35510866 authored by Max Kellermann's avatar Max Kellermann

configure.ac: fix "xyes: command not found"

Due to a missing "test", the "xyes" token was interpreted as a command.
parent 0800c6f4
......@@ -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]),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment