From f3849aa2b3eb49ca6a903e6627f97540c1a383f1 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 18 Nov 2008 23:58:28 +0100 Subject: screen_song: new screen which views song information This new screen views all information available on a song: its location, file name, and tags. --- configure.ac | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'configure.ac') 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]) -- cgit v1.2.3