diff options
author | Max Kellermann <max@duempel.org> | 2008-11-18 23:58:28 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-11-18 23:58:28 +0100 |
commit | f3849aa2b3eb49ca6a903e6627f97540c1a383f1 (patch) | |
tree | fd264cfe8ca66ae006983bd3992031f374709048 /configure.ac | |
parent | 77b6145e75c6e1641002dd9675bcf3b5439c3718 (diff) | |
download | mpd-f3849aa2b3eb49ca6a903e6627f97540c1a383f1.tar.gz mpd-f3849aa2b3eb49ca6a903e6627f97540c1a383f1.tar.xz mpd-f3849aa2b3eb49ca6a903e6627f97540c1a383f1.zip |
screen_song: new screen which views song information
This new screen views all information available on a song: its
location, file name, and tags.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index f4a9a7da0..5de3a3244 100644 --- a/configure.ac +++ b/configure.ac @@ -312,6 +312,20 @@ if test "x$search_screen" = "xyes" ; then fi AM_CONDITIONAL(ENABLE_SEARCH_SCREEN, test x$search_screen = xyes) + +dnl Optional screen - song viewer +AC_MSG_CHECKING([whether to include the song viewer screen]) +AC_ARG_ENABLE([song-screen], + AC_HELP_STRING([--enable-song-screen], + [Enable song viewer screen @<:@default=yes@:>@]), + [song_screen="$enableval"], + [song_screen=$disable_mini]) +AC_MSG_RESULT([$song_screen]) +if test "x$song_screen" = "xyes" ; then + AC_DEFINE(ENABLE_SONG_SCREEN, 1, [Enable song viewer screen]) +fi + +AM_CONDITIONAL(ENABLE_SONG_SCREEN, test x$song_screen = xyes) dnl Optional screen - key editor AC_MSG_CHECKING([whether to include the key editor screen]) |