Commit | Line | Data |
---|---|---|
ac65e355 MD |
1 | # -*- Autoconf -*- |
2 | # Process this file with autoconf to produce a configure script. | |
3 | ||
305c65e5 | 4 | AC_INIT([babeltrace],[1.0.0-pre2],[mathieu dot desnoyers at efficios dot com]) |
ac65e355 MD |
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 | |
aa225880 | 20 | LT_INIT |
8b9d5b5e MD |
21 | AC_PROG_YACC |
22 | AC_PROG_LEX | |
ac65e355 | 23 | |
e5f5317f MD |
24 | AC_DEFUN([AC_PROG_BISON], [AC_CHECK_PROGS(BISON, bison, bison)]) |
25 | ||
a6947cca | 26 | AM_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. | |
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 | ||
fd55fc57 MD |
38 | # Check libuuid |
39 | AC_CHECK_LIB([uuid], [uuid_generate], [], | |
40 | [AC_MSG_ERROR([Cannot find libuuid. Use [LDFLAGS]=-Ldir to specify its location.])] | |
41 | ) | |
42 | ||
0f536a74 TP |
43 | AC_CHECK_LIB([popt], [poptGetContext], [], |
44 | [AC_MSG_ERROR([Cannot find popt.])] | |
45 | ) | |
46 | ||
ac65e355 MD |
47 | pkg_modules="gmodule-2.0 >= 2.0.0" |
48 | PKG_CHECK_MODULES(GMODULE, [$pkg_modules]) | |
49 | AC_SUBST(PACKAGE_LIBS) | |
50 | ||
34d3acc4 MD |
51 | LIBS="$LIBS $GMODULE_LIBS" |
52 | PACKAGE_CFLAGS="$GMODULE_CFLAGS -Wall -Wformat" | |
ac65e355 MD |
53 | AC_SUBST(PACKAGE_CFLAGS) |
54 | ||
e4d70dc3 | 55 | babeltraceincludedir="${includedir}/babeltrace" |
70bd0a12 JD |
56 | AC_SUBST(babeltraceincludedir) |
57 | ||
64a35d1b JD |
58 | babeltracectfincludedir="${includedir}/babeltrace/ctf" |
59 | AC_SUBST(babeltracectfincludedir) | |
60 | ||
ac65e355 MD |
61 | AC_CONFIG_FILES([ |
62 | Makefile | |
63 | types/Makefile | |
64 | formats/Makefile | |
65 | formats/ctf/Makefile | |
66 | formats/ctf/types/Makefile | |
1ae19169 MD |
67 | formats/ctf-text/Makefile |
68 | formats/ctf-text/types/Makefile | |
22133895 | 69 | formats/bt-dummy/Makefile |
8b9d5b5e | 70 | formats/ctf/metadata/Makefile |
4c8bfb7e | 71 | converter/Makefile |
d2c0553c | 72 | doc/Makefile |
1eb0c69c | 73 | lib/Makefile |
74f21e2d | 74 | lib/prio_heap/Makefile |
e92927d1 | 75 | include/Makefile |
ac65e355 MD |
76 | tests/Makefile |
77 | ]) | |
78 | AC_OUTPUT |