diff options
-rw-r--r-- | configure.ac | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/configure.ac b/configure.ac index 0462376f..c22025d8 100644 --- a/configure.ac +++ b/configure.ac @@ -1421,13 +1421,21 @@ echo "Thank you for downloading $PACKAGE_STRING" echo echo "This is how we have configured the optional components for you today:" echo -echo "Daemon .............................. $enable_daemon" -echo "Appliance ........................... $enable_appliance" -echo "QEMU ................................ $QEMU $QEMU_OPTIONS" +echo "Daemon .............................. $enable_daemon" +echo "Appliance ........................... $enable_appliance" +echo "QEMU ................................ $QEMU $QEMU_OPTIONS" +echo "guestfish and C-based virt tools .... yes" +echo "FUSE filesystem ..................... $enable_fuse" +AS_ECHO_N(["GNU gettext for i18n ................ "]) +if test "x$HAVE_GNU_GETTEXT_TRUE" = "x"; then echo "yes"; else echo "no"; fi AS_ECHO_N(["OCaml bindings ...................... "]) if test "x$HAVE_OCAML_TRUE" = "x"; then echo "yes"; else echo "no"; fi +AS_ECHO_N(["OCaml-based virt tools .............. "]) +if test "x$HAVE_OCAML_TRUE" = "x"; then echo "yes"; else echo "no"; fi AS_ECHO_N(["Perl bindings ....................... "]) if test "x$HAVE_PERL_TRUE" = "x"; then echo "yes"; else echo "no"; fi +AS_ECHO_N(["Perl-based virt tools ............... "]) +if test "x$HAVE_TOOLS_TRUE" = "x"; then echo "yes"; else echo "no"; fi AS_ECHO_N(["Python bindings ..................... "]) if test "x$HAVE_PYTHON_TRUE" = "x"; then echo "yes"; else echo "no"; fi AS_ECHO_N(["Ruby bindings ....................... "]) @@ -1440,18 +1448,10 @@ AS_ECHO_N(["PHP bindings ........................ "]) if test "x$HAVE_PHP_TRUE" = "x"; then echo "yes"; else echo "no"; fi AS_ECHO_N(["Erlang bindings ..................... "]) if test "x$HAVE_ERLANG_TRUE" = "x"; then echo "yes"; else echo "no"; fi -echo "guestfish and C virt tools .......... yes" -AS_ECHO_N(["Perl virt tools ..................... "]) -if test "x$HAVE_TOOLS_TRUE" = "x"; then echo "yes"; else echo "no"; fi -AS_ECHO_N(["OCaml virt tools .................... "]) -if test "x$HAVE_OCAML_TRUE" = "x"; then echo "yes"; else echo "no"; fi -echo "FUSE filesystem ..................... $enable_fuse" AS_ECHO_N(["gobject bindings .................... "]) if test "x$HAVE_GOBJECT_TRUE" = "x"; then echo "yes"; else echo "no"; fi AS_ECHO_N(["gobject introspection ............... "]) if test "x$HAVE_INTROSPECTION_TRUE" = "x"; then echo "yes"; else echo "no"; fi -AS_ECHO_N(["GNU gettext for i18n ................ "]) -if test "x$HAVE_GNU_GETTEXT_TRUE" = "x"; then echo "yes"; else echo "no"; fi echo echo "If any optional component is configured 'no' when you expected 'yes'" echo "then you should check the preceding messages." |