Add missing stdint.h
[babeltrace.git] / configure.ac
CommitLineData
ac65e355
MD
1# -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
d199691b 4AC_INIT([babeltrace], [0.6], [mathieu dot desnoyers at efficios dot com])
ac65e355
MD
5AC_CONFIG_AUX_DIR([config])
6AC_CANONICAL_TARGET
7AC_CANONICAL_HOST
8AM_INIT_AUTOMAKE([foreign dist-bzip2 no-dist-gzip])
9m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
10
11AC_CONFIG_MACRO_DIR([m4])
12
13AM_PROG_MKDIR_P
14
15AC_CONFIG_HEADERS([config.h])
16
17# Checks for programs.
18AC_PROG_CC
19AC_PROG_MAKE_SET
20AC_PROG_LIBTOOL
8b9d5b5e
MD
21AC_PROG_YACC
22AC_PROG_LEX
ac65e355 23
e5f5317f
MD
24AC_DEFUN([AC_PROG_BISON], [AC_CHECK_PROGS(BISON, bison, bison)])
25
a6947cca 26AM_PATH_GLIB_2_0(2.22.0, ,AC_MSG_ERROR([glib is required in order to compile BabelTrace - download it from ftp://ftp.gtk.org/pub/gtk]) , gmodule)
ac65e355
MD
27
28# Checks for typedefs, structures, and compiler characteristics.
29AC_C_INLINE
30AC_TYPE_PID_T
31AC_TYPE_SIZE_T
32
33# Checks for library functions.
34AC_FUNC_MALLOC
35AC_FUNC_MMAP
36AC_CHECK_FUNCS([bzero gettimeofday munmap strtoul])
37
fd55fc57
MD
38# Check libuuid
39AC_CHECK_LIB([uuid], [uuid_generate], [],
40 [AC_MSG_ERROR([Cannot find libuuid. Use [LDFLAGS]=-Ldir to specify its location.])]
41)
42
ac65e355
MD
43pkg_modules="gmodule-2.0 >= 2.0.0"
44PKG_CHECK_MODULES(GMODULE, [$pkg_modules])
45AC_SUBST(PACKAGE_LIBS)
46
34d3acc4
MD
47LIBS="$LIBS $GMODULE_LIBS"
48PACKAGE_CFLAGS="$GMODULE_CFLAGS -Wall -Wformat"
ac65e355
MD
49AC_SUBST(PACKAGE_CFLAGS)
50
70bd0a12
JD
51babeltraceincludedir="${includedir}"
52AC_SUBST(babeltraceincludedir)
53
ac65e355
MD
54AC_CONFIG_FILES([
55 Makefile
56 types/Makefile
57 formats/Makefile
58 formats/ctf/Makefile
59 formats/ctf/types/Makefile
1ae19169
MD
60 formats/ctf-text/Makefile
61 formats/ctf-text/types/Makefile
22133895 62 formats/bt-dummy/Makefile
8b9d5b5e 63 formats/ctf/metadata/Makefile
4c8bfb7e 64 converter/Makefile
1eb0c69c 65 lib/Makefile
e92927d1 66 include/Makefile
ac65e355
MD
67 tests/Makefile
68])
69AC_OUTPUT
This page took 0.027868 seconds and 4 git commands to generate.