diff options
author | Max Kellermann <max@duempel.org> | 2008-11-17 21:52:34 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-11-17 21:52:34 +0100 |
commit | ef82981e98a3ed2df67127da3904d1fc9248d6c5 (patch) | |
tree | 4a5b81b0a5651156044db61deee61e8951d91adb | |
parent | 75fb57e851aa80b19df6500ccf89de7636bc1255 (diff) | |
download | mpd-ef82981e98a3ed2df67127da3904d1fc9248d6c5.tar.gz mpd-ef82981e98a3ed2df67127da3904d1fc9248d6c5.tar.xz mpd-ef82981e98a3ed2df67127da3904d1fc9248d6c5.zip |
configure.ac: enable artist screen by default
The artist screen has matured, and everybody should have it by
default.
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index c1cabc3e3..3a42bfafb 100644 --- a/configure.ac +++ b/configure.ac @@ -289,9 +289,9 @@ dnl Optional screen - artist 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@:>@]), + [Enable artist screen @<:@default=no@:>@]), [artist_screen="$enableval"], - [artist_screen=no]) + [artist_screen=yes]) AC_MSG_RESULT([$artist_screen]) if test "x$artist_screen" = "xyes" ; then AC_DEFINE(ENABLE_ARTIST_SCREEN, 1, [Enable artist screen]) |