ctf metadata field is set bitmasks
[babeltrace.git] / configure.ac
1 # -*- Autoconf -*-
2 # Process this file with autoconf to produce a configure script.
3
4 AC_INIT([babeltrace], [0.1], [mathieu dot desnoyers at efficios dot com])
5 AC_CONFIG_AUX_DIR([config])
6 AC_CANONICAL_TARGET
7 AC_CANONICAL_HOST
8 AM_INIT_AUTOMAKE([foreign dist-bzip2 no-dist-gzip])
9 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
10
11 AC_CONFIG_MACRO_DIR([m4])
12
13 AM_PROG_MKDIR_P
14
15 AC_CONFIG_HEADERS([config.h])
16
17 # Checks for programs.
18 AC_PROG_CC
19 AC_PROG_MAKE_SET
20 AC_PROG_LIBTOOL
21 AC_PROG_YACC
22 AC_PROG_LEX
23
24 AC_DEFUN([AC_PROG_BISON], [AC_CHECK_PROGS(BISON, bison, bison)])
25
26 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)
27
28 # Checks for typedefs, structures, and compiler characteristics.
29 AC_C_INLINE
30 AC_TYPE_PID_T
31 AC_TYPE_SIZE_T
32
33 # Checks for library functions.
34 AC_FUNC_MALLOC
35 AC_FUNC_MMAP
36 AC_CHECK_FUNCS([bzero gettimeofday munmap strtoul])
37
38 pkg_modules="gmodule-2.0 >= 2.0.0"
39 PKG_CHECK_MODULES(GMODULE, [$pkg_modules])
40 AC_SUBST(PACKAGE_LIBS)
41
42 LIBS="$LIBS $GMODULE_LIBS"
43 PACKAGE_CFLAGS="$GMODULE_CFLAGS -Wall -Wformat"
44 AC_SUBST(PACKAGE_CFLAGS)
45
46 AC_CONFIG_FILES([
47 Makefile
48 types/Makefile
49 formats/Makefile
50 formats/ctf/Makefile
51 formats/ctf/types/Makefile
52 formats/ctf/metadata/Makefile
53 converter/Makefile
54 tests/Makefile
55 ])
56 AC_OUTPUT
This page took 0.030239 seconds and 4 git commands to generate.