diff options
author | Max Kellermann <max@duempel.org> | 2014-11-21 22:19:57 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-11-21 22:19:57 +0100 |
commit | b3f5b4932c360efef696f7db112766c63b1de389 (patch) | |
tree | d0532376ef025570b4d31bcd13e3b589b9dae5b4 /src/encoder | |
parent | b3f5f2f75f7c982659b17730a95db992ed64f413 (diff) | |
download | mpd-b3f5b4932c360efef696f7db112766c63b1de389.tar.gz mpd-b3f5b4932c360efef696f7db112766c63b1de389.tar.xz mpd-b3f5b4932c360efef696f7db112766c63b1de389.zip |
configure.ac: add macro MPD_ENABLE_AUTO_PKG
Simplify the definition of many build options.
Diffstat (limited to '')
-rw-r--r-- | src/encoder/EncoderList.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/encoder/EncoderList.cxx b/src/encoder/EncoderList.cxx index 4bca5a4fe..f3e3ffa64 100644 --- a/src/encoder/EncoderList.cxx +++ b/src/encoder/EncoderList.cxx @@ -33,16 +33,16 @@ const EncoderPlugin *const encoder_plugins[] = { &null_encoder_plugin, -#ifdef ENABLE_VORBIS_ENCODER +#ifdef ENABLE_VORBISENC &vorbis_encoder_plugin, #endif -#ifdef HAVE_OPUS +#ifdef ENABLE_OPUS &opus_encoder_plugin, #endif #ifdef ENABLE_LAME_ENCODER &lame_encoder_plugin, #endif -#ifdef ENABLE_TWOLAME_ENCODER +#ifdef ENABLE_TWOLAME &twolame_encoder_plugin, #endif #ifdef ENABLE_WAVE_ENCODER @@ -51,7 +51,7 @@ const EncoderPlugin *const encoder_plugins[] = { #ifdef ENABLE_FLAC_ENCODER &flac_encoder_plugin, #endif -#ifdef ENABLE_SHINE_ENCODER +#ifdef ENABLE_SHINE &shine_encoder_plugin, #endif nullptr |