]> git.sur5r.net Git - kconfig-frontends/commitdiff
configure: default for frontends is "auto", not "enabled"
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue, 14 Feb 2012 22:27:32 +0000 (23:27 +0100)
committerYann E. MORIN" <yann.morin.1998@free.fr>
Tue, 14 Feb 2012 22:27:32 +0000 (23:27 +0100)
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" <yann.morin.1998@anciens.enib.fr>
configure.ac

index e5e7badc30cbff26b4fc3434255e141653570901..30c390813aa37295615dcd13f4c17db2e0e9a2e9 100644 (file)
@@ -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}])
 
 #----------------------------------------