From: "Yann E. MORIN" Date: Tue, 24 Jan 2012 21:49:56 +0000 (+0100) Subject: configure: print the enabled frontends X-Git-Tag: v3.3.0-0~35 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=7785deecba5cd61f034fb4fa5b6a5f38f553fd64;p=kconfig-frontends configure: print the enabled frontends Signed-off-by: "Yann E. MORIN" --- diff --git a/configure.ac b/configure.ac index 9cedf96..1c965f4 100644 --- a/configure.ac +++ b/configure.ac @@ -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])])