From 572291c64ed79b4988de6d23c31458d7c3c71b1d Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Mon, 1 Oct 2012 12:57:04 +0100 Subject: configure: Rearrange build options report in ./configure output. This had accreted over a long period of time, so it wasn't arranged very logically. --- configure.ac | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/configure.ac b/configure.ac index 30156b69..68949b40 100644 --- a/configure.ac +++ b/configure.ac @@ -1400,13 +1400,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 ....................... "]) @@ -1419,18 +1427,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." -- cgit