configure.ac: fix "xyes: command not found"
Due to a missing "test", the "xyes" token was interpreted as a command.
This commit is contained in:
parent
0800c6f4ca
commit
355108666c
@ -336,7 +336,7 @@ if test x$enable_curl = xyes; then
|
|||||||
fi
|
fi
|
||||||
AM_CONDITIONAL(HAVE_CURL, test x$enable_curl = xyes)
|
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
|
enable_shout=yes
|
||||||
PKG_CHECK_MODULES([SHOUT], [shout],
|
PKG_CHECK_MODULES([SHOUT], [shout],
|
||||||
AC_DEFINE(HAVE_SHOUT, 1, [Define to enable libshout support]),
|
AC_DEFINE(HAVE_SHOUT, 1, [Define to enable libshout support]),
|
||||||
|
Loading…
Reference in New Issue
Block a user