diff options
author | Max Kellermann <max@duempel.org> | 2008-10-26 21:58:37 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-10-26 21:58:37 +0100 |
commit | 0800c6f4ca36012b65e3cde825663adc1eafeae2 (patch) | |
tree | 5d0f24a02042c48a30d6b67920f77ef65e7e6215 /src/output/fifo_plugin.c | |
parent | 3dac99034afe14e61554f327329c11d32962ae04 (diff) | |
download | mpd-0800c6f4ca36012b65e3cde825663adc1eafeae2.tar.gz mpd-0800c6f4ca36012b65e3cde825663adc1eafeae2.tar.xz mpd-0800c6f4ca36012b65e3cde825663adc1eafeae2.zip |
output: don't compile plugins which are disabled
Don't compile the sources of disabled output plugins at all.
Diffstat (limited to '')
-rw-r--r-- | src/output/fifo_plugin.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/output/fifo_plugin.c b/src/output/fifo_plugin.c index d7eb91ff6..cd83177f8 100644 --- a/src/output/fifo_plugin.c +++ b/src/output/fifo_plugin.c @@ -17,9 +17,6 @@ */ #include "../output_api.h" - -#ifdef HAVE_FIFO - #include "../log.h" #include "../utils.h" #include "../timer.h" @@ -282,9 +279,3 @@ const struct audio_output_plugin fifoPlugin = { .cancel = fifo_dropBufferedAudio, .close = fifo_closeDevice, }; - -#else /* HAVE_FIFO */ - -DISABLED_AUDIO_OUTPUT_PLUGIN(fifoPlugin) - -#endif /* !HAVE_FIFO */ |