Add a configure report at the end of the output
authorAlexandre Montplaisir <alexandre.montplaisir@gmail.com>
Fri, 10 Feb 2012 22:31:23 +0000 (17:31 -0500)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Fri, 10 Feb 2012 22:31:23 +0000 (17:31 -0500)
Sorry, couldn't help myself...

Signed-off-by: Alexandre Montplaisir <alexandre.montplaisir@gmail.com>
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
configure.ac

index e175840f1b7b74c3df71f315e95ffe05fe38d6e2..e0ed0b79d380087710cb48058f32944f577cebbc 100644 (file)
@@ -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.")
+
This page took 0.025265 seconds and 4 git commands to generate.