diff options
author | Max Kellermann <max@duempel.org> | 2014-09-26 09:00:58 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-09-26 09:29:18 +0200 |
commit | 8bf46a665e4b4bd9d663351fbfb8ff47b59dfdd6 (patch) | |
tree | d0895464e3ffb420f0b0ab358023a38b1727a801 /src/DecoderList.cxx | |
parent | c4fca2aa614741f3d5bfef4eff039ae52c1a0a15 (diff) | |
download | mpd-8bf46a665e4b4bd9d663351fbfb8ff47b59dfdd6.tar.gz mpd-8bf46a665e4b4bd9d663351fbfb8ff47b59dfdd6.tar.xz mpd-8bf46a665e4b4bd9d663351fbfb8ff47b59dfdd6.zip |
configure.ac: add option to disable the DSD decoders
Allow building a smaller MPD binary for people who don't need DSD.
Diffstat (limited to 'src/DecoderList.cxx')
-rw-r--r-- | src/DecoderList.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/DecoderList.cxx b/src/DecoderList.cxx index 834178260..4546cac2f 100644 --- a/src/DecoderList.cxx +++ b/src/DecoderList.cxx @@ -73,8 +73,10 @@ const struct DecoderPlugin *const decoder_plugins[] = { #ifdef HAVE_AUDIOFILE &audiofile_decoder_plugin, #endif +#ifdef ENABLE_DSD &dsdiff_decoder_plugin, &dsf_decoder_plugin, +#endif #ifdef HAVE_FAAD &faad_decoder_plugin, #endif |