summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard W.M. Jones <rjones@redhat.com>2012-10-01 12:57:04 +0100
committerRichard W.M. Jones <rjones@redhat.com>2012-10-01 13:36:42 +0100
commit572291c64ed79b4988de6d23c31458d7c3c71b1d (patch)
treed7d7094fcfa3340d0a7fb646442dc9b7fe7f4718
parent6f53d49a27fbf7f1b5c22080e2509375e128d5e4 (diff)
downloadlibguestfs-572291c64ed79b4988de6d23c31458d7c3c71b1d.tar.gz
libguestfs-572291c64ed79b4988de6d23c31458d7c3c71b1d.tar.xz
libguestfs-572291c64ed79b4988de6d23c31458d7c3c71b1d.zip
configure: Rearrange build options report in ./configure output.
This had accreted over a long period of time, so it wasn't arranged very logically.
-rw-r--r--configure.ac22
1 files 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."