diff options
author | Max Kellermann <max@duempel.org> | 2008-09-25 20:00:03 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-09-25 20:00:03 +0200 |
commit | cee4c0450e477e6b683fb3db883227c2a7fa423f (patch) | |
tree | 6d38e37ce065a8db8e7444fae5ab317cf97108f7 /src/screen_lyrics.c | |
parent | f87fea3cd0792de52c0620c329b67db096a7a687 (diff) | |
download | mpd-cee4c0450e477e6b683fb3db883227c2a7fa423f.tar.gz mpd-cee4c0450e477e6b683fb3db883227c2a7fa423f.tar.xz mpd-cee4c0450e477e6b683fb3db883227c2a7fa423f.zip |
screen: don't compile disabled sources
Instead of evaluating macros from config.h in the disabled source,
don't start the compiler on it at all.
Diffstat (limited to '')
-rw-r--r-- | src/screen_lyrics.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/screen_lyrics.c b/src/screen_lyrics.c index d83bf5b36..3c0393488 100644 --- a/src/screen_lyrics.c +++ b/src/screen_lyrics.c @@ -17,8 +17,6 @@ * */ -#include "config.h" -#ifndef DISABLE_LYRICS_SCREEN #include <sys/stat.h> #include "ncmpc.h" #include "options.h" @@ -336,5 +334,3 @@ const struct screen_functions screen_lyrics = { .cmd = lyrics_cmd, .get_title = lyrics_title, }; - -#endif /* ENABLE_LYRICS_SCREEN */ |