aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-12-24 03:24:23 +0100
committerMax Kellermann <max@duempel.org>2008-12-24 03:24:23 +0100
commit7950a6d612a0eef6595cfd831912db592c4f5ad3 (patch)
tree7116e9f27ab91864d1a0d1eec3ffacee691329a6 /configure.ac
parent0d9d82a932d7fc022bfc410e206fb8edb6f3db03 (diff)
downloadmpd-7950a6d612a0eef6595cfd831912db592c4f5ad3.tar.gz
mpd-7950a6d612a0eef6595cfd831912db592c4f5ad3.tar.xz
mpd-7950a6d612a0eef6595cfd831912db592c4f5ad3.zip
configure.ac: disable the mikmod plugin by default
libmikmod seems to be unmaintained, and has several critical bugs which make MPD crash. http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=461519 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=476339 Disable the plugin by default to minimize harm. Users should explicitly enable the mikmod decoder (--enable-mod) if they wish to have it anyway.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index dc99e4196..091134b86 100644
--- a/configure.ac
+++ b/configure.ac
@@ -220,7 +220,7 @@ AC_ARG_ENABLE(mod,
AS_HELP_STRING([--enable-mod],
[enable MOD support (default: disable)]),
enable_mod=$enableval,
- enable_mod=yes)
+ enable_mod=no)
AC_ARG_ENABLE(mpc,
AS_HELP_STRING([--disable-mpc],