Add a report at the end of the configure output
authorAlexandre Montplaisir <alexandre.montplaisir@gmail.com>
Wed, 8 Feb 2012 21:34:50 +0000 (16:34 -0500)
committerYannick Brosseau <yannick.brosseau@gmail.com>
Sat, 11 Feb 2012 03:04:40 +0000 (22:04 -0500)
Signed-off-by: Alexandre Montplaisir <alexandre.montplaisir@gmail.com>
Signed-off-by: Yannick Brosseau <yannick.brosseau@gmail.com>
configure.ac

index 31655949ac67ec0a573dca26a555378549db8182..e74d4606775d50951849193880ad426a5beaa27e 100644 (file)
@@ -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.")
+
This page took 0.024109 seconds and 4 git commands to generate.