diff options
author | Max Kellermann <max@duempel.org> | 2008-11-07 08:27:14 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-11-07 08:27:14 +0100 |
commit | ab3876d4c059d4a076c49d1700067fe7b3696d54 (patch) | |
tree | f27f36687dc0277f52ee9a25cf8a27a0f5899253 /configure.ac | |
parent | 865a07f6753c23190a18c1a1429be144bf7069b2 (diff) | |
download | mpd-ab3876d4c059d4a076c49d1700067fe7b3696d54.tar.gz mpd-ab3876d4c059d4a076c49d1700067fe7b3696d54.tar.xz mpd-ab3876d4c059d4a076c49d1700067fe7b3696d54.zip |
configure.ac: added --disable-help-screen
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/configure.ac b/configure.ac index 212b618e5..18aa36191 100644 --- a/configure.ac +++ b/configure.ac @@ -248,16 +248,18 @@ CHECK_CFLAG([-Wcast-qual]) CHECK_CFLAG([-Wwrite-strings]) dnl Optional screen - help screen -#AC_MSG_CHECKING([whether to include the help screen]) -#AC_ARG_ENABLE([help-screen], -# AC_HELP_STRING([--enable-help-screen], -# [Enable the help screen @<:@default=yes@:>@]), -# [help_screen="$enableval"], -# [help_screen=yes]) -#AC_MSG_RESULT([$help_screen]) -#if test "x$help_screen" = "xyes" ; then -# AC_DEFINE(ENABLE_HELP_SCREEN, 1, [Enable the help screen]) -#fi +AC_MSG_CHECKING([whether to include the help screen]) +AC_ARG_ENABLE([help-screen], + AS_HELP_STRING([--enable-help-screen], + [Enable the help screen @<:@default=yes@:>@]), + [help_screen="$enableval"], + [help_screen=$disable_mini]) +AC_MSG_RESULT([$help_screen]) +if test "x$help_screen" = "xyes" ; then + AC_DEFINE(ENABLE_HELP_SCREEN, 1, [Enable the help screen]) +fi + +AM_CONDITIONAL(ENABLE_HELP_SCREEN, test x$help_screen = xyes) dnl Optional screen - browse screen #AC_MSG_CHECKING([whether to include the browse screen])r |