Fix: Use the packet's final size when mmap-ing the next packet
[babeltrace.git] / configure.ac
CommitLineData
ac65e355
MD
1# -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
87353f23 4AC_INIT([babeltrace],[1.1.1],[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
abb7b782 13AC_PROG_MKDIR_P
ac65e355
MD
14
15AC_CONFIG_HEADERS([config.h])
16
217108a9
MD
17AC_SYS_LARGEFILE
18
ac65e355 19# Checks for programs.
267325e9 20AC_PROG_CC_STDC
ac65e355 21AC_PROG_MAKE_SET
aa225880 22LT_INIT
8b9d5b5e
MD
23AC_PROG_YACC
24AC_PROG_LEX
ac65e355 25
a4cd2791
YB
26if test ! -f "$srcdir/formats/ctf/metadata/ctf-parser.h"; then
27 if test x"$YACC" != "xbison -y"; then
28 AC_MSG_ERROR([[bison not found and is required when building from git.
29 Please install bison]])
30 fi
31fi
32
33if test ! -f "$srcdir/formats/ctf/metadata/ctf-lexer.c"; then
34 if test x"$LEX" != "xflex"; then
35 AC_MSG_ERROR([[flex not found and is required when building from git.
36 Please install flex]])
37 fi
38fi
39
e5f5317f 40
a6947cca 41AM_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
42
43# Checks for typedefs, structures, and compiler characteristics.
44AC_C_INLINE
45AC_TYPE_PID_T
46AC_TYPE_SIZE_T
47
48# Checks for library functions.
49AC_FUNC_MALLOC
50AC_FUNC_MMAP
51AC_CHECK_FUNCS([bzero gettimeofday munmap strtoul])
52
a4dfa07b
MD
53# Check for libuuid
54AC_CHECK_LIB([uuid], [uuid_generate],
55[
56 AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_LIBUUID], 1, [Has libuuid support.])
57 have_libuuid=yes
58],
59[
60 # libuuid not found, check for uuid_create in libc.
61 AC_CHECK_LIB([c], [uuid_create],
62 [
63 AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_LIBC_UUID], 1, [Has libc uuid support.])
64 have_libc_uuid=yes
65 ],
66 [
67 AC_MSG_ERROR([Cannot find libuuid uuid_generate nor libc uuid_create. Use [LDFLAGS]=-Ldir to specify their location.])
68 ])
69]
fd55fc57 70)
a4dfa07b
MD
71AM_CONDITIONAL([BABELTRACE_BUILD_WITH_LIBUUID], [test "x$have_libuuid" = "xyes"])
72AM_CONDITIONAL([BABELTRACE_BUILD_WITH_LIBC_UUID], [test "x$have_libc_uuid" = "xyes"])
fd55fc57 73
f8370579
MD
74# Check for fmemopen
75AC_CHECK_LIB([c], [fmemopen],
76[
77 AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_FMEMOPEN], 1, [Has fmemopen support.])
78]
79)
80
81# Check for open_memstream
82AC_CHECK_LIB([c], [open_memstream],
83[
84 AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_OPEN_MEMSTREAM], 1, [Has open_memstream support.])
85]
86)
87
0f536a74
TP
88AC_CHECK_LIB([popt], [poptGetContext], [],
89 [AC_MSG_ERROR([Cannot find popt.])]
90)
91
ac65e355
MD
92pkg_modules="gmodule-2.0 >= 2.0.0"
93PKG_CHECK_MODULES(GMODULE, [$pkg_modules])
94AC_SUBST(PACKAGE_LIBS)
95
34d3acc4 96LIBS="$LIBS $GMODULE_LIBS"
217108a9 97PACKAGE_CFLAGS="$GMODULE_CFLAGS -Wall -Wformat -include config.h"
ac65e355
MD
98AC_SUBST(PACKAGE_CFLAGS)
99
e4d70dc3 100babeltraceincludedir="${includedir}/babeltrace"
70bd0a12
JD
101AC_SUBST(babeltraceincludedir)
102
64a35d1b
JD
103babeltracectfincludedir="${includedir}/babeltrace/ctf"
104AC_SUBST(babeltracectfincludedir)
105
ac65e355
MD
106AC_CONFIG_FILES([
107 Makefile
108 types/Makefile
109 formats/Makefile
110 formats/ctf/Makefile
111 formats/ctf/types/Makefile
1ae19169
MD
112 formats/ctf-text/Makefile
113 formats/ctf-text/types/Makefile
5d93a76e 114 formats/ctf-metadata/Makefile
22133895 115 formats/bt-dummy/Makefile
8b9d5b5e 116 formats/ctf/metadata/Makefile
4c8bfb7e 117 converter/Makefile
d2c0553c 118 doc/Makefile
1eb0c69c 119 lib/Makefile
74f21e2d 120 lib/prio_heap/Makefile
e92927d1 121 include/Makefile
ac65e355 122 tests/Makefile
aa968dde 123 tests/lib/Makefile
6aa249b5
MD
124 extras/Makefile
125 extras/valgrind/Makefile
d0acc96d 126 babeltrace.pc
ac65e355
MD
127])
128AC_OUTPUT
This page took 0.035211 seconds and 4 git commands to generate.