]> git.sur5r.net Git - kconfig-frontends/commitdiff
configure.ac: generate lists of frontends and libs before output
authorYann E. MORIN <yann.morin.1998@free.fr>
Wed, 3 Aug 2016 20:55:55 +0000 (22:55 +0200)
committerYann E. MORIN <yann.morin.1998@free.fr>
Sun, 21 Aug 2016 19:31:21 +0000 (21:31 +0200)
Currently, none of those lists is AC_SUBST()ed, but a new one will be
added soon, that needs to be AC_SUBST()ed.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
configure.ac

index ad923e9532b8361c0b382894abc0285886ef8361..e44b44292ea851672a680c72e67c0125be96fad7 100644 (file)
@@ -460,6 +460,23 @@ AC_SUBST(
     [KCONFIGPARSER_LIB_VERSION],
     [m4_esyscmd_s([./scripts/version.sh --plain])])
 
+#----------------------------------------
+# Pretty-print the configuration settings
+[fe_list=]
+AS_IF([test "$enable_conf"  = "yes"], [fe_list="$fe_list conf" ])
+AS_IF([test "$enable_gconf" = "yes"], [fe_list="$fe_list gconf"])
+AS_IF([test "$enable_mconf" = "yes"], [fe_list="$fe_list mconf"])
+AS_IF([test "$enable_nconf" = "yes"], [fe_list="$fe_list nconf"])
+AS_IF([test "$enable_qconf" = "yes"], [fe_list="$fe_list qconf"])
+
+[lib_list=]
+AS_IF(
+    [test "$enable_shared" = "yes"],
+    [lib_list="$lib_list shared (version: $KCONFIGPARSER_LIB_VERSION)"])
+AS_IF(
+    [test "$enable_static" = "yes"],
+    [lib_list="$lib_list${lib_list:+,} static"])
+
 #----------------------------------------
 # Finalise
 AC_CONFIG_FILES([
@@ -480,23 +497,6 @@ AC_CONFIG_FILES([
 ])
 AC_OUTPUT
 
-#----------------------------------------
-# Pretty-print the configuration settings
-[fe_list=]
-AS_IF([test "$enable_conf"  = "yes"], [fe_list="$fe_list conf" ])
-AS_IF([test "$enable_gconf" = "yes"], [fe_list="$fe_list gconf"])
-AS_IF([test "$enable_mconf" = "yes"], [fe_list="$fe_list mconf"])
-AS_IF([test "$enable_nconf" = "yes"], [fe_list="$fe_list nconf"])
-AS_IF([test "$enable_qconf" = "yes"], [fe_list="$fe_list qconf"])
-
-[lib_list=]
-AS_IF(
-    [test "$enable_shared" = "yes"],
-    [lib_list="$lib_list shared (version: $KCONFIGPARSER_LIB_VERSION)"])
-AS_IF(
-    [test "$enable_static" = "yes"],
-    [lib_list="$lib_list${lib_list:+,} static"])
-
 AC_MSG_NOTICE()
 AC_MSG_NOTICE([Configured with:])
 AC_MSG_NOTICE([- parser library     :$lib_list])