mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-22 20:41:20 +00:00
Disable checking for XMMS by default.
I got tired of seeing the noise about XMMS' config script not being installed making it seem like XMMS is important to QF. It might be useful, but it's certainly not important enoug for a scary looking message.
This commit is contained in:
parent
b0217bf0cf
commit
2eda61931e
1 changed files with 2 additions and 2 deletions
|
@ -4,9 +4,9 @@ dnl ==================================================================
|
|||
|
||||
dnl XMMS Checks
|
||||
AC_ARG_ENABLE(xmms,
|
||||
[ --disable-xmms disable checking for XMMS],
|
||||
[ --enable-xmms enable checking for XMMS],
|
||||
)
|
||||
if test "x$mingw" != xyes -a "x$enable_xmms" != xno; then
|
||||
if test "x$mingw" != xyes -a "x$enable_xmms" == xyes; then
|
||||
AM_PATH_XMMS(0.9.5.1,
|
||||
HAVE_XMMS=yes,
|
||||
HAVE_XMMS=no)
|
||||
|
|
Loading…
Reference in a new issue