From: Alexandre Montplaisir Date: Fri, 10 Feb 2012 22:31:23 +0000 (-0500) Subject: Add a configure report at the end of the output X-Git-Tag: v1.9.7~7 X-Git-Url: http://git.lttng.org/?p=lttng-ust.git;a=commitdiff_plain;h=1f9eff07ad19cfd5e1ac935c8711894e4b499e10 Add a configure report at the end of the output Sorry, couldn't help myself... Signed-off-by: Alexandre Montplaisir Signed-off-by: Mathieu Desnoyers --- diff --git a/configure.ac b/configure.ac index e175840f..e0ed0b79 100644 --- a/configure.ac +++ b/configure.ac @@ -265,4 +265,21 @@ AC_CONFIG_FILES([ tests/ust-multi-test/Makefile lttng-ust.pc ]) + AC_OUTPUT + +# Report on the configuration options +AS_ECHO() +AS_ECHO("LTTng-UST will be built with the following options:") +AS_ECHO("Library format: $LIBFORMAT") + +AS_ECHO() +AS_ECHO_N("Java support (JNI): ") +AS_IF([test "x$jni_interface" = "xyes"], [AS_ECHO("Enabled")], [AS_ECHO("Disabled")]) + +AS_ECHO_N("sdt.h integration: ") +AS_IF([test "x$with_sdt" = "xyes"], [AS_ECHO("Enabled")], [AS_ECHO("Disabled")]) + +AS_ECHO() +AS_ECHO("Type 'make' to compile.") +