2 # Process this file with autoconf to produce a configure script.
4 AC_INIT([babeltrace], [0.1], [mathieu dot desnoyers at efficios dot com])
5 AC_CONFIG_AUX_DIR([config])
8 AM_INIT_AUTOMAKE([foreign dist-bzip2 no-dist-gzip])
9 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
11 AC_CONFIG_MACRO_DIR([m4])
15 AC_CONFIG_HEADERS([config.h])
17 # Checks for programs.
22 AM_PATH_GLIB_2_0(2.4.0, ,AC_MSG_ERROR([glib is required in order to compile BabelTrace - download it from ftp://ftp.gtk.org/pub/gtk]) , gmodule)
24 # Checks for typedefs, structures, and compiler characteristics.
29 # Checks for library functions.
32 AC_CHECK_FUNCS([bzero gettimeofday munmap strtoul])
34 pkg_modules="gmodule-2.0 >= 2.0.0"
35 PKG_CHECK_MODULES(GMODULE, [$pkg_modules])
36 AC_SUBST(PACKAGE_LIBS)
38 PACKAGE_CFLAGS="$GMODULE_CFLAGS"
39 AC_SUBST(PACKAGE_CFLAGS)
46 formats/ctf/types/Makefile