diff options
author | Kalle Wallin <kaw@linux.se> | 2005-06-06 16:59:49 +0000 |
---|---|---|
committer | Kalle Wallin <kaw@linux.se> | 2005-06-06 16:59:49 +0000 |
commit | 38880bd748572c2f3b05c6625ab1029ece2483c4 (patch) | |
tree | e571bd56fb88b41ab5acc523a1b8ecd25f1a4e9f /configure.ac | |
parent | 996a3ca723224e6f956bc1a0c3da8653a946bcfa (diff) | |
download | mpd-38880bd748572c2f3b05c6625ab1029ece2483c4.tar.gz mpd-38880bd748572c2f3b05c6625ab1029ece2483c4.tar.xz mpd-38880bd748572c2f3b05c6625ab1029ece2483c4.zip |
Added an experimental artist (browser) screen
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@3322 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index a9929f237..cdcab65b7 100644 --- a/configure.ac +++ b/configure.ac @@ -171,6 +171,18 @@ if test "x$artist_screen" != "xyes" ; then AC_DEFINE(DISABLE_ARTIST_SCREEN, 1, [Disable artist screen]) fi +dnl artist screen +AC_MSG_CHECKING([whether to include the artist screen]) +AC_ARG_ENABLE([artist-screen], + AC_HELP_STRING([--enable-artist-screen], + [Enable artist screen (EXPERIMENTAL) @<:@default=no@:>@]), + [artist_screen="$enableval"], + [artist_screen=no]) +AC_MSG_RESULT([$artist_screen]) +if test "x$artist_screen" != "xyes" ; then + AC_DEFINE(DISABLE_ARTIST_SCREEN, 1, [Disable artist screen]) +fi + dnl search screen AC_MSG_CHECKING([whether to include the search screen]) AC_ARG_ENABLE([search-screen], |