From: Yann E. MORIN" Date: Tue, 14 Feb 2012 22:27:32 +0000 (+0100) Subject: configure: default for frontends is "auto", not "enabled" X-Git-Tag: v3.3.0-0~25 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=98491e16d2acf6d1fa5fa22e6da0be46f9b98842;p=kconfig-frontends configure: default for frontends is "auto", not "enabled" The default is to check for each frontends if the depndencies are available. If so, the frontend is enabled, if not, it is disabled. Signed-off-by: "Yann E. MORIN" --- diff --git a/configure.ac b/configure.ac index e5e7bad..30c3908 100644 --- a/configure.ac +++ b/configure.ac @@ -65,31 +65,31 @@ AC_ARG_ENABLE( [conf], [AS_HELP_STRING( [--disable-conf], - [conf, the stdin-based frontend (default=enabled)])]) + [conf, the stdin-based frontend (default=auto)])]) AC_SUBST([enable_conf], [${enable_conf:-auto}]) AC_ARG_ENABLE( [mconf], [AS_HELP_STRING( [--disable-mconf], - [mconf, the traditional ncurses-based frontend (default=enabled)])]) + [mconf, the traditional ncurses-based frontend (default=auto)])]) AC_SUBST([enable_mconf], [${enable_mconf:-auto}]) AC_ARG_ENABLE( [nconf], [AS_HELP_STRING( [--disable-nconf], - [nconf, the modern ncurses-based frontend (default=enabled)])]) + [nconf, the modern ncurses-based frontend (default=auto)])]) AC_SUBST([enable_nconf], [${enable_nconf:-auto}]) AC_ARG_ENABLE( [gconf], [AS_HELP_STRING( [--disable-gconf], - [gconf, the GTK-based frontend (default=enabled)])]) + [gconf, the GTK-based frontend (default=auto)])]) AC_SUBST([enable_gconf], [${enable_gconf:-auto}]) AC_ARG_ENABLE( [qconf], [AS_HELP_STRING( [--disable-qconf], - [qconf, the QT-based frontend (default=enabled)])]) + [qconf, the QT-based frontend (default=auto)])]) AC_SUBST([enable_qconf], [${enable_qconf:-auto}]) #----------------------------------------