Test for presence of bison and flex when building from git
[babeltrace.git] / configure.ac
... / ...
CommitLineData
1# -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
4AC_INIT([babeltrace],[1.1.1],[mathieu dot desnoyers at efficios dot com])
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
13AC_PROG_MKDIR_P
14
15AC_CONFIG_HEADERS([config.h])
16
17AC_SYS_LARGEFILE
18
19# Checks for programs.
20AC_PROG_CC_STDC
21AC_PROG_MAKE_SET
22LT_INIT
23AC_PROG_YACC
24AC_PROG_LEX
25
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
40
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)
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
53# Check for MinGW32.
54MINGW32=no
55case $host in
56 *-*-mingw*)
57 MINGW32=yes;;
58esac
59
60AM_CONDITIONAL([BABELTRACE_BUILD_WITH_MINGW], [test "x$MINGW32" = "xyes"])
61
62# Check for libuuid
63AC_CHECK_LIB([uuid], [uuid_generate],
64[
65 AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_LIBUUID], 1, [Has libuuid support.])
66 have_libuuid=yes
67],
68[
69 # libuuid not found, check for uuid_create in libc.
70 AC_CHECK_LIB([c], [uuid_create],
71 [
72 AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_LIBC_UUID], 1, [Has libc uuid support.])
73 have_libc_uuid=yes
74 ],
75 [
76 # for MinGW32 we have our own internal implemenation of uuid using Windows functions.
77 if test "x$MINGW32" = xno; then
78 AC_MSG_ERROR([Cannot find libuuid uuid_generate nor libc uuid_create. Use [LDFLAGS]=-Ldir to specify their location.])
79 fi
80 ])
81]
82)
83AM_CONDITIONAL([BABELTRACE_BUILD_WITH_LIBUUID], [test "x$have_libuuid" = "xyes"])
84AM_CONDITIONAL([BABELTRACE_BUILD_WITH_LIBC_UUID], [test "x$have_libc_uuid" = "xyes"])
85
86# Check for fmemopen
87AC_CHECK_LIB([c], [fmemopen],
88[
89 AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_FMEMOPEN], 1, [Has fmemopen support.])
90]
91)
92
93# Check for open_memstream
94AC_CHECK_LIB([c], [open_memstream],
95[
96 AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_OPEN_MEMSTREAM], 1, [Has open_memstream support.])
97]
98)
99
100AC_CHECK_LIB([popt], [poptGetContext], [],
101 [AC_MSG_ERROR([Cannot find popt.])]
102)
103
104pkg_modules="gmodule-2.0 >= 2.0.0"
105PKG_CHECK_MODULES(GMODULE, [$pkg_modules])
106AC_SUBST(PACKAGE_LIBS)
107
108LIBS="$LIBS $GMODULE_LIBS"
109PACKAGE_CFLAGS="$GMODULE_CFLAGS -Wall -Wformat -include config.h"
110AC_SUBST(PACKAGE_CFLAGS)
111
112babeltraceincludedir="${includedir}/babeltrace"
113AC_SUBST(babeltraceincludedir)
114
115babeltracectfincludedir="${includedir}/babeltrace/ctf"
116AC_SUBST(babeltracectfincludedir)
117
118AC_CONFIG_FILES([
119 Makefile
120 types/Makefile
121 compat/Makefile
122 formats/Makefile
123 formats/ctf/Makefile
124 formats/ctf/types/Makefile
125 formats/ctf-text/Makefile
126 formats/ctf-text/types/Makefile
127 formats/ctf-metadata/Makefile
128 formats/bt-dummy/Makefile
129 formats/ctf/metadata/Makefile
130 converter/Makefile
131 doc/Makefile
132 lib/Makefile
133 lib/prio_heap/Makefile
134 include/Makefile
135 tests/Makefile
136 tests/lib/Makefile
137 extras/Makefile
138 extras/valgrind/Makefile
139 babeltrace.pc
140])
141AC_OUTPUT
This page took 0.022118 seconds and 4 git commands to generate.