Replace usage of FTS with custom directory traversal code
[lttv.git] / configure.ac
index 58af406b18467bfcb618cc4d32a46fd3e06367bf..23430881d2594df61a9f5b65538c215de4a3dd83 100644 (file)
@@ -29,19 +29,6 @@ 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],
@@ -122,8 +109,17 @@ 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 $GMODULE_LIBS"
+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])
@@ -175,6 +171,8 @@ AC_SUBST(lttvincludedir)
 AC_SUBST(lttvwindowincludedir)
 AC_SUBST(lttctlincludedir)
 
+#      ltt/Makefile
+
 AC_CONFIG_FILES([Makefile
        lttv/Makefile
        lttv/lttv/Makefile
@@ -193,7 +191,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
This page took 0.024728 seconds and 4 git commands to generate.