Version 1.2.0-rc2
[babeltrace.git] / configure.ac
CommitLineData
ac65e355
MD
1# -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
65d3497f 4AC_INIT([babeltrace],[1.2.0-rc2],[mathieu dot desnoyers at efficios dot com])
3fbccce7
MD
5
6# Following the numbering scheme proposed by libtool for the library version
7# http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
8AC_SUBST([BABELTRACE_LIBRARY_VERSION], [1:0:0])
9
ac65e355
MD
10AC_CONFIG_AUX_DIR([config])
11AC_CANONICAL_TARGET
12AC_CANONICAL_HOST
13AM_INIT_AUTOMAKE([foreign dist-bzip2 no-dist-gzip])
14m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
15
16AC_CONFIG_MACRO_DIR([m4])
17
abb7b782 18AC_PROG_MKDIR_P
ac65e355
MD
19
20AC_CONFIG_HEADERS([config.h])
21
217108a9
MD
22AC_SYS_LARGEFILE
23
ac65e355 24# Checks for programs.
267325e9 25AC_PROG_CC_STDC
ac65e355 26AC_PROG_MAKE_SET
aa225880 27LT_INIT
8b9d5b5e
MD
28AC_PROG_YACC
29AC_PROG_LEX
ac65e355 30
331d78f5
YB
31if test ! -f "$srcdir/formats/ctf/metadata/ctf-parser.h"; then
32 if test x"$YACC" != "xbison -y"; then
33 AC_MSG_ERROR([[bison not found and is required when building from git.
34 Please install bison]])
35 fi
36fi
37
38if test ! -f "$srcdir/formats/ctf/metadata/ctf-lexer.c"; then
39 if test x"$LEX" != "xflex"; then
40 AC_MSG_ERROR([[flex not found and is required when building from git.
41 Please install flex]])
42 fi
43fi
44
e5f5317f 45
a6947cca 46AM_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
47
48# Checks for typedefs, structures, and compiler characteristics.
49AC_C_INLINE
50AC_TYPE_PID_T
51AC_TYPE_SIZE_T
52
53# Checks for library functions.
54AC_FUNC_MALLOC
55AC_FUNC_MMAP
56AC_CHECK_FUNCS([bzero gettimeofday munmap strtoul])
57
58819898
JI
58# Check for MinGW32.
59MINGW32=no
60case $host in
61 *-*-mingw*)
62 MINGW32=yes;;
63esac
64
65AM_CONDITIONAL([BABELTRACE_BUILD_WITH_MINGW], [test "x$MINGW32" = "xyes"])
66
a4dfa07b
MD
67# Check for libuuid
68AC_CHECK_LIB([uuid], [uuid_generate],
69[
70 AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_LIBUUID], 1, [Has libuuid support.])
71 have_libuuid=yes
72],
73[
74 # libuuid not found, check for uuid_create in libc.
75 AC_CHECK_LIB([c], [uuid_create],
76 [
77 AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_LIBC_UUID], 1, [Has libc uuid support.])
78 have_libc_uuid=yes
79 ],
80 [
9d1e7de0
JI
81 # for MinGW32 we have our own internal implemenation of uuid using Windows functions.
82 if test "x$MINGW32" = xno; then
83 AC_MSG_ERROR([Cannot find libuuid uuid_generate nor libc uuid_create. Use [LDFLAGS]=-Ldir to specify their location.])
84 fi
a4dfa07b
MD
85 ])
86]
fd55fc57 87)
a4dfa07b
MD
88AM_CONDITIONAL([BABELTRACE_BUILD_WITH_LIBUUID], [test "x$have_libuuid" = "xyes"])
89AM_CONDITIONAL([BABELTRACE_BUILD_WITH_LIBC_UUID], [test "x$have_libc_uuid" = "xyes"])
fd55fc57 90
f8370579
MD
91# Check for fmemopen
92AC_CHECK_LIB([c], [fmemopen],
93[
94 AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_FMEMOPEN], 1, [Has fmemopen support.])
95]
96)
97
98# Check for open_memstream
99AC_CHECK_LIB([c], [open_memstream],
100[
101 AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_OPEN_MEMSTREAM], 1, [Has open_memstream support.])
102]
103)
104
0f536a74
TP
105AC_CHECK_LIB([popt], [poptGetContext], [],
106 [AC_MSG_ERROR([Cannot find popt.])]
107)
108
24a3136a
DS
109
110# For Python
111# SWIG version needed or newer:
112swig_version=2.0.0
113
94a6cea3
JG
114AC_ARG_ENABLE([python-bindings],
115 [AC_HELP_STRING([--enable-python-bindings],
116 [generate Python bindings])],
117 [enable_python=yes], [enable_python=no])
24a3136a
DS
118
119AM_CONDITIONAL([USE_PYTHON], [test "x${enable_python:-yes}" = xyes])
120
121if test "x${enable_python:-yes}" = xyes; then
24a3136a
DS
122 AX_PKG_SWIG($swig_version, [], [ AC_MSG_ERROR([SWIG $swig_version or newer is needed]) ])
123 AM_PATH_PYTHON
124
125 AC_ARG_VAR([PYTHON_INCLUDE], [Include flags for python, bypassing python-config])
126 AC_ARG_VAR([PYTHON_CONFIG], [Path to python-config])
127 AS_IF([test -z "$PYTHON_INCLUDE"], [
128 AS_IF([test -z "$PYTHON_CONFIG"], [
129 AC_PATH_PROGS([PYTHON_CONFIG],
130 [python$PYTHON_VERSION-config python-config],
131 [no],
132 [`dirname $PYTHON`])
94a6cea3 133 AS_IF([test "$PYTHON_CONFIG" = no], [AC_MSG_ERROR([cannot find python-config for $PYTHON. Do you have python-dev installed?])])
24a3136a
DS
134 ])
135 AC_MSG_CHECKING([python include flags])
136 PYTHON_INCLUDE=`$PYTHON_CONFIG --includes`
137 AC_MSG_RESULT([$PYTHON_INCLUDE])
138 ])
94a6cea3
JG
139
140else
141 AC_MSG_NOTICE([You may configure with --enable-python-bindings ]dnl
142[if you want Python bindings.])
143
24a3136a
DS
144fi
145
ac65e355
MD
146pkg_modules="gmodule-2.0 >= 2.0.0"
147PKG_CHECK_MODULES(GMODULE, [$pkg_modules])
148AC_SUBST(PACKAGE_LIBS)
149
34d3acc4 150LIBS="$LIBS $GMODULE_LIBS"
217108a9 151PACKAGE_CFLAGS="$GMODULE_CFLAGS -Wall -Wformat -include config.h"
ac65e355
MD
152AC_SUBST(PACKAGE_CFLAGS)
153
e4d70dc3 154babeltraceincludedir="${includedir}/babeltrace"
70bd0a12
JD
155AC_SUBST(babeltraceincludedir)
156
64a35d1b
JD
157babeltracectfincludedir="${includedir}/babeltrace/ctf"
158AC_SUBST(babeltracectfincludedir)
159
273b65be
JG
160babeltracectfwriterincludedir="${includedir}/babeltrace/ctf-writer"
161AC_SUBST(babeltracectfwriterincludedir)
162
ac65e355
MD
163AC_CONFIG_FILES([
164 Makefile
165 types/Makefile
9d1e7de0 166 compat/Makefile
ac65e355
MD
167 formats/Makefile
168 formats/ctf/Makefile
169 formats/ctf/types/Makefile
1ae19169
MD
170 formats/ctf-text/Makefile
171 formats/ctf-text/types/Makefile
5d93a76e 172 formats/ctf-metadata/Makefile
22133895 173 formats/bt-dummy/Makefile
4a744367 174 formats/lttng-live/Makefile
8b9d5b5e 175 formats/ctf/metadata/Makefile
273b65be 176 formats/ctf/writer/Makefile
4c8bfb7e 177 converter/Makefile
d2c0553c 178 doc/Makefile
1eb0c69c 179 lib/Makefile
74f21e2d 180 lib/prio_heap/Makefile
e92927d1 181 include/Makefile
24a3136a
DS
182 bindings/Makefile
183 bindings/python/Makefile
ac65e355 184 tests/Makefile
19badea8 185 tests/bin/Makefile
aa968dde 186 tests/lib/Makefile
1833a3d1
CB
187 tests/utils/Makefile
188 tests/utils/tap/Makefile
6aa249b5
MD
189 extras/Makefile
190 extras/valgrind/Makefile
d0acc96d 191 babeltrace.pc
e7a7efdb 192 babeltrace-ctf.pc
ac65e355
MD
193])
194AC_OUTPUT
This page took 0.03647 seconds and 4 git commands to generate.