From 7785deecba5cd61f034fb4fa5b6a5f38f553fd64 Mon Sep 17 00:00:00 2001 From: " \"Yann E. MORIN\"" Date: Tue, 24 Jan 2012 22:49:56 +0100 Subject: [PATCH] configure: print the enabled frontends Signed-off-by: "Yann E. MORIN" --- configure.ac | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) 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])]) -- 2.39.5