]> git.sur5r.net Git - kconfig-frontends/commitdiff
configure: print the enabled frontends
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue, 24 Jan 2012 21:49:56 +0000 (22:49 +0100)
committerYann E. MORIN" <yann.morin.1998@free.fr>
Tue, 24 Jan 2012 21:49:56 +0000 (22:49 +0100)
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
configure.ac

index 9cedf96a9c6815f55cac246b755ab6338167d0ea..1c965f44c10cbe95ead86aef4f6b547665ffa1b2 100644 (file)
@@ -209,3 +209,20 @@ AC_CONFIG_FILES([
     frontends/qconf/Makefile
 ])
 AC_OUTPUT
+
+AC_MSG_NOTICE([Configured with:])
+AS_IF([test "$enable_conf" = "yes"],
+      [AC_MSG_NOTICE([  - conf:  yes])],
+      [AC_MSG_NOTICE([  - conf:  no])])
+AS_IF([test "$enable_gconf" = "yes"],
+      [AC_MSG_NOTICE([  - gconf: yes])],
+      [AC_MSG_NOTICE([  - gconf: no])])
+AS_IF([test "$enable_mconf" = "yes"],
+      [AC_MSG_NOTICE([  - mconf: yes])],
+      [AC_MSG_NOTICE([  - mconf: no])])
+AS_IF([test "$enable_nconf" = "yes"],
+      [AC_MSG_NOTICE([  - nconf: yes])],
+      [AC_MSG_NOTICE([  - nconf: no])])
+AS_IF([test "$enable_qconf" = "yes"],
+      [AC_MSG_NOTICE([  - qconf: yes])],
+      [AC_MSG_NOTICE([  - qconf: no])])