X-Git-Url: https://git.lttng.org/?p=lttv.git;a=blobdiff_plain;f=configure.ac;h=23430881d2594df61a9f5b65538c215de4a3dd83;hp=67da0ca478ca02e28f91993b01e966cc88af7a3f;hb=e40cdd19296a4fbacf0738fb3671f6d0503d9e99;hpb=bd14e4a87b866615c17d933e55841812d7effa5d diff --git a/configure.ac b/configure.ac index 67da0ca4..23430881 100644 --- a/configure.ac +++ b/configure.ac @@ -21,15 +21,29 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ(2.57) -AC_INIT(FULL-PACKAGE-NAME, VERSION, BUG-REPORT-ADDRESS) -#AC_WITH_LTDL # not needed ? -AM_INIT_AUTOMAKE(lttv,0.12.17-01072009) -AM_CONFIG_HEADER(config.h) -AM_PROG_LIBTOOL - -AM_PATH_GLIB_2_0(2.4.0, ,AC_MSG_ERROR([glib is required in order to compile LinuxTraceToolkit - download it from ftp://ftp.gtk.org/pub/gtk]) , gmodule) - -AM_PATH_GTK_2_0(2.4.0, ,AC_MSG_ERROR([gtk is required in order to compile GUI - download it from ftp://ftp.gtk.org/pub/gtk]) , gmodule) +AC_INIT([lttv], [0.12.38-21032011], [yannick.brosseau@gmail.com]) +AC_CONFIG_AUX_DIR([config]) +AC_CONFIG_MACRO_DIR([config]) +AM_INIT_AUTOMAKE([dist-bzip2 no-dist-gzip]) +AM_SILENT_RULES([yes]) +AC_CONFIG_HEADERS([config.h]) +LT_INIT + +# If requested, avoid building LTTV part +AC_ARG_WITH(lttv-gui, + AS_HELP_STRING([--with-lttv-gui], + [build LTTV gui, as opposed to only build textmode LTTV [[default=yes]]]), + [with_lttv_gui="$withval"], + [with_lttv_gui="yes"]) + +AM_CONDITIONAL([BUILD_LTTV_GUI], [ test "x$with_lttv_gui" = "xyes" ]) + +AM_PATH_GLIB_2_0(2.4.0, , AC_MSG_ERROR([glib is required in order to compile LTTV]) , gmodule) + +# GTK is only needed by the GUI +AS_IF([test "x$with_lttv_gui" = "xyes"],[ + AM_PATH_GTK_2_0(2.4.0, , AC_MSG_ERROR([GTK 2 is required in order to compile the LTTV GUI]) , gmodule) +]) AC_PATH_PROGS(BASH, bash) @@ -39,35 +53,77 @@ AC_SYS_LARGEFILE AC_PROG_CC # Checks for libraries. -AC_CHECK_LIB([popt], [poptGetNextOpt], POPT_LIBS="-lpopt",AC_MSG_ERROR([libpopt is required in order to compile LinuxTraceToolkit]) ) -#AC_CHECK_LIB([m], [round], M_LIBS="-lm",AC_MSG_ERROR([Mathematical libraries are missing.]) ) - -AC_CHECK_LIB([util], [forkpty], UTIL_LIBS="-lutil", AC_MSG_ERROR([libutil is required in order to compile LinuxTraceToolkit])) - +AC_CHECK_LIB([popt], [poptGetNextOpt], [], + AC_MSG_ERROR([libpopt is required in order to compile LTTV]) +) +AC_CHECK_LIB([m], [round], [], + AC_MSG_ERROR([Mathematical libraries are missing.]) +) +AC_CHECK_LIB([util], [forkpty], [], + AC_MSG_ERROR([libutil is required in order to compile LTTV]) +) + +# Trace synchronization feature, which requires libglpk +AC_ARG_WITH([trace-sync], + AS_HELP_STRING([--with-trace-sync], + [support trace synchronization accuracy calculation (needs libglpk) [default=no]]), + [with_trace_sync="$withval"], + [with_trace_sync="no"]) + +AS_IF([test "x$with_trace_sync" = "xyes"],[ + AC_CHECK_LIB([glpk], [glp_create_prob], [], [ + AC_MSG_ERROR([The trace synchronization feature requires libglpk, please install it first.]) + ]) + AC_DEFINE([HAVE_LIBGLPK], [1], [Define if you have libglpk]), +]) -# pthread for gdb with dlopen(). -AC_CHECK_LIB(pthread, pthread_join, [], AC_MSG_ERROR([LinuxThreads is required in order to make sure gdb works fine with lttv-gui])) # Checks for header files. AC_HEADER_STDC AC_CHECK_HEADERS([fcntl.h stdlib.h string.h sys/time.h unistd.h pthread.h]) -AC_ISC_POSIX -AC_PROG_CC -AM_PROG_CC_STDC -AC_HEADER_STDC +# Check for JNI header files if requested +AC_ARG_WITH(jni-interface, + AS_HELP_STRING([--with-jni-interface], + [build JNI interface between C and Java. Needs JNI header file. [[default=no]]]), + [with_jni_interface="$withval"], + [with_jni_interface="no"]) + +AS_IF([test "x$with_jni_interface" = "xyes"],[ + AC_CHECK_HEADERS([jni.h], [], AC_MSG_ERROR([missing jni.h +Make sure Sun Java or OpenJDK or GCJ is installed and that this header file exists in the system path. +Use CFLAGS=-I/path/ to specify a non-standard path or disable the JNI interface.])) +]) +AM_CONDITIONAL([BUILD_JNI_INTERFACE], [ test "$with_jni_interface" = "yes" ] ) -pkg_modules="gtk+-2.0 >= 2.0.0" -PKG_CHECK_MODULES(GTK, [$pkg_modules]) + +# If we want the gui, we need additionnal flags for GTK +AS_IF([test "x$with_lttv_gui" = "xyes"],[ + pkg_modules="gtk+-2.0 >= 2.0.0" + PKG_CHECK_MODULES(PACKAGE, [$pkg_modules]) +]) + +pkg_modules="gmodule-2.0 >= 2.0.0" +PKG_CHECK_MODULES(GMODULE, [$pkg_modules]) pkg_modules="gobject-2.0 >= 2.0.0" PKG_CHECK_MODULES(GOBJECT, [$pkg_modules]) -LIBS="$LIBS $GTK_LIBS $GOBJECT_LIBS" -PACKAGE_CFLAGS="$GTK_CFLAGS $GOBJECT_CFLAGS -Wall -Wformat" +PKG_CHECK_MODULES(BABELTRACE, [babeltrace >= 1.0.0]) + +AC_CHECK_LIB([babeltrace], [bt_iter_equals_pos], + [AC_DEFINE([HAVE_BT_ITER_EQUALS_POS],[],[Have equal function])], []) + +AC_CHECK_LIB([babeltrace-ctf], [bt_ctf_event_name], + [], [AC_MSG_ERROR([libbabeltrace-ctf is required in order to compile LTTV])]) + +LIBS="$LIBS $GTK_LIBS $GOBJECT_LIBS $GMODULE_LIBS $BABELTRACE_LIBS" +PACKAGE_CFLAGS="$GTK_CFLAGS $GOBJECT_CFLAGS $GMODULE_CFLAGS -Wall -Wformat-security" + MODULE_CFLAGS="$PACKAGE_CFLAGS -fvisibility=hidden" MODULE_LDFLAGS="-module -avoid-version" AC_SUBST([PACKAGE_CFLAGS]) +AC_SUBST(PACKAGE_LIBS) AC_SUBST([MODULE_CFLAGS]) AC_SUBST([MODULE_LDFLAGS]) @@ -81,18 +137,16 @@ AC_HEADER_TIME # Checks for library functions. AC_FUNC_ERROR_AT_LINE -#AC_FUNC_MALLOC AC_FUNC_SELECT_ARGTYPES AC_CHECK_FUNCS([select]) -#CPPFLAGS="$CPPFLAGS -I" - AC_ARG_ENABLE(lttvstatic, - AC_HELP_STRING( [--enable-lttvstatic], - [Build a statically linked executable @<:@default=no@:>@]), - [with_lttvstatic="yes"], - [with_lttvstatic="no"]) -AM_CONDITIONAL(LTTVSTATIC, test "x$with_lttvstatic" = "xyes") + AS_HELP_STRING([--enable-lttvstatic], + [build a statically linked executable [[default=no]]]), + [lttvstatic="$enableval"], + [lttvstatic="no"]) +AM_CONDITIONAL([LTTVSTATIC], [ test "x$lttvstatic" = "xyes" ] ) + lttvlibdir="${libdir}/lttv" lttvplugindir="${lttvlibdir}/plugins" #lttlibdir="${libdir}/ltt" @@ -106,8 +160,6 @@ lttvincludedir="${includedir}/lttv" lttvwindowincludedir="${includedir}/lttvwindow" lttctlincludedir="${includedir}/liblttctl" -AC_SUBST([POPT_LIBS]) -AC_SUBST([UTIL_LIBS]) AC_SUBST(lttvlibdir) AC_SUBST(lttvplugindir) #AC_SUBST(lttlibdir) @@ -119,33 +171,59 @@ AC_SUBST(lttvincludedir) AC_SUBST(lttvwindowincludedir) AC_SUBST(lttctlincludedir) - #lttv/modules/gui/tutorial/Makefile - #lttv/modules/gui/diskperformance/Makefile +# ltt/Makefile + AC_CONFIG_FILES([Makefile - lttv/Makefile - lttv/lttv/Makefile - lttv/modules/Makefile - lttv/modules/text/Makefile - lttv/modules/gui/Makefile - lttv/modules/gui/lttvwindow/Makefile - lttv/modules/gui/interrupts/Makefile - lttv/modules/gui/lttvwindow/lttvwindow/Makefile - lttv/modules/gui/lttvwindow/pixmaps/Makefile - lttv/modules/gui/controlflow/Makefile - lttv/modules/gui/detailedevents/Makefile - lttv/modules/gui/statistics/Makefile - lttv/modules/gui/histogram/Makefile - lttv/modules/gui/filter/Makefile - lttv/modules/gui/tracecontrol/Makefile - lttv/modules/gui/resourceview/Makefile - ltt/Makefile - doc/Makefile - doc/developer/Makefile - doc/developer/developer_guide/Makefile - doc/developer/developer_guide/docbook/Makefile - doc/developer/developer_guide/html/Makefile - doc/user/Makefile - doc/user/user_guide/Makefile - doc/user/user_guide/docbook/Makefile - doc/user/user_guide/html/Makefile]) + lttv/Makefile + lttv/lttv/Makefile + lttv/lttv/sync/Makefile + lttv/modules/Makefile + lttv/modules/text/Makefile + lttv/modules/gui/Makefile + lttv/modules/gui/lttvwindow/Makefile + lttv/modules/gui/interrupts/Makefile + lttv/modules/gui/lttvwindow/lttvwindow/Makefile + lttv/modules/gui/lttvwindow/pixmaps/Makefile + lttv/modules/gui/controlflow/Makefile + lttv/modules/gui/detailedevents/Makefile + lttv/modules/gui/statistics/Makefile + lttv/modules/gui/histogram/Makefile + lttv/modules/gui/filter/Makefile + lttv/modules/gui/tracecontrol/Makefile + lttv/modules/gui/resourceview/Makefile + doc/Makefile + doc/developer/Makefile + doc/developer/developer_guide/Makefile + doc/developer/developer_guide/docbook/Makefile + doc/developer/developer_guide/html/Makefile + doc/user/Makefile + doc/user/user_guide/Makefile + doc/user/user_guide/docbook/Makefile + doc/user/user_guide/html/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_N("Statically linked executable: ") +AS_IF([test "x$lttvstatic" = "xyes"],[AS_ECHO("Yes")],[AS_ECHO("No")]) + +AS_ECHO() +AS_ECHO("Type 'make' to build LTTV.") +