From: Alexandre Montplaisir Date: Wed, 8 Feb 2012 21:34:50 +0000 (-0500) Subject: Add a report at the end of the configure output X-Git-Tag: v1.5-beta1~96 X-Git-Url: http://git.lttng.org/?p=lttv.git;a=commitdiff_plain;h=67c06453b1a52601530f4d41f3771e32a6d98190 Add a report at the end of the configure output Signed-off-by: Alexandre Montplaisir Signed-off-by: Yannick Brosseau --- diff --git a/configure.ac b/configure.ac index 31655949..e74d4606 100644 --- a/configure.ac +++ b/configure.ac @@ -208,3 +208,23 @@ AC_CONFIG_FILES([Makefile AC_OUTPUT +# Report on what will be built +AS_ECHO() +AS_ECHO("The following components will be built:") +AS_ECHO("LTT trace reading library: Enabled") # It's always enabled! + +AS_ECHO_N("LTTV command line tool: ") +AS_IF([test "x$with_lttv" = "xyes"],[AS_ECHO("Enabled")],[AS_ECHO("Disabled")]) + +AS_ECHO_N("LTTV graphical interface: ") +AS_IF([test "x$with_lttv_gui" = "xyes"],[AS_ECHO("Enabled")],[AS_ECHO("Disabled")]) + +AS_ECHO_N("Trace synchronization: ") +AS_IF([test "x$with_trace_sync" = "xyes"],[AS_ECHO("Enabled")],[AS_ECHO("Disabled")]) + +AS_ECHO_N("Java (JNI) interface: ") +AS_IF([test "x$with_jni_interface" = "xyes"],[AS_ECHO("Enabled")],[AS_ECHO("Disabled")]) + +AS_ECHO() +AS_ECHO("Type 'make' to build LTTV.") +