X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=configure.ac;h=ccd2f4e6b647025fdc6644a226a1fc9dd9f3e832;hb=3dc978780e632a699a82f4c2bb74cee6fdb518a0;hp=df5584592bd00ce5fdad543975dbbd640defb1ef;hpb=fac33835d9bb5341be29c151405ba93dacc2d16f;p=lttv.git diff --git a/configure.ac b/configure.ac index df558459..ccd2f4e6 100644 --- a/configure.ac +++ b/configure.ac @@ -29,25 +29,15 @@ AM_SILENT_RULES([yes]) AC_CONFIG_HEADERS([config.h]) LT_INIT -# If requested, only build the ltt trace reading library -AC_ARG_WITH(lttv, - AS_HELP_STRING([--with-lttv], - [build whole LTTV system, as opposd to only the trace reading library [[default=yes]]]), - [with_lttv="$withval"], - [with_lttv="yes"]) - -# If we've requested the lib only, turn off the lttv-gui building as well -AS_IF([test "x$with_lttv" = "xno"], [with_lttv_gui="no"]) - -AM_CONDITIONAL([BUILD_LIB_ONLY], [ test "x$with_lttv" = "xno" ]) - - # 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"]) +#TODO ybrosseau 2012-03-13: Remove this when babeltrace port is complete +#Force GUI disabling while we port babeltrace +#with_lttv_gui="no" AM_CONDITIONAL([BUILD_LTTV_GUI], [ test "x$with_lttv_gui" = "xyes" ]) @@ -122,8 +112,12 @@ PKG_CHECK_MODULES(GMODULE, [$pkg_modules]) pkg_modules="gobject-2.0 >= 2.0.0" PKG_CHECK_MODULES(GOBJECT, [$pkg_modules]) -# Todo add test for babeltrace pkg-config -BABELTRACE_LIBS="-lbabeltrace -lbabeltrace-ctf" +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])], []) + + LIBS="$LIBS $GTK_LIBS $GOBJECT_LIBS $GMODULE_LIBS $BABELTRACE_LIBS" PACKAGE_CFLAGS="$GTK_CFLAGS $GOBJECT_CFLAGS $GMODULE_CFLAGS -Wall -Wformat-security" @@ -179,6 +173,8 @@ AC_SUBST(lttvincludedir) AC_SUBST(lttvwindowincludedir) AC_SUBST(lttctlincludedir) +# ltt/Makefile + AC_CONFIG_FILES([Makefile lttv/Makefile lttv/lttv/Makefile @@ -197,7 +193,6 @@ AC_CONFIG_FILES([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