aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-09-26 09:10:34 +0200
committerMax Kellermann <max@duempel.org>2014-09-26 09:29:18 +0200
commit3d17c0677789947a0c62544b15aeb7e99e04868f (patch)
tree9f529e235ad205d85a455550fe8c06d0a4cf5f27
parentd6c08fb79fb67427c8c208e3dde87212b3a4006f (diff)
downloadmpd-3d17c0677789947a0c62544b15aeb7e99e04868f.tar.gz
mpd-3d17c0677789947a0c62544b15aeb7e99e04868f.tar.xz
mpd-3d17c0677789947a0c62544b15aeb7e99e04868f.zip
configure.ac: allow building MPD without decoder plugin
There's always the "PCM" decoder plugin, which was never checked by configure.ac.
Diffstat (limited to '')
-rw-r--r--configure.ac21
1 files changed, 0 insertions, 21 deletions
diff --git a/configure.ac b/configure.ac
index aba8e33f4..38836ed81 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1094,27 +1094,6 @@ AM_CONDITIONAL(ENABLE_WILDMIDI, test x$enable_wildmidi = xyes)
dnl ------------------------ Post Decoder Plugins Tests -----------------------
-if
- test x$enable_aac = xno &&
- test x$enable_audiofile = xno &&
- test x$enable_ffmpeg = xno &&
- test x$enable_flac = xno &&
- test x$enable_fluidsynth = xno &&
- test x$enable_mad = xno &&
- test x$enable_mikmod = xno; then
- test x$enable_modplug = xno &&
- test x$enable_mpc = xno &&
- test x$enable_mpg123 = xno &&
- test x$enable_opus = xno &&
- test x$enable_sidplay = xno &&
- test x$enable_tremor = xno &&
- test x$enable_vorbis = xno &&
- test x$enable_wavpack = xno &&
- test x$enable_wildmidi = xno &&
-
- AC_MSG_ERROR([No input plugins supported!])
-fi
-
AM_CONDITIONAL(HAVE_XIPH,
test x$enable_vorbis = xyes || test x$enable_tremor = xyes || test x$enable_flac = xyes || test x$enable_opus = xyes)