Add configure report
[babeltrace.git] / configure.ac
CommitLineData
43047f21 1AC_PREREQ([2.50])
c551f7a1 2AC_INIT([babeltrace],[1.3.2],[jeremie.galarneau@efficios.com],[],[https://diamon.org/babeltrace])
3fbccce7
MD
3AC_SUBST([BABELTRACE_LIBRARY_VERSION], [1:0:0])
4
9d5a2885 5AC_CONFIG_HEADERS([config.h])
ac65e355 6AC_CONFIG_AUX_DIR([config])
9d5a2885
MJ
7AC_CONFIG_MACRO_DIR([m4])
8
ac65e355
MD
9AC_CANONICAL_TARGET
10AC_CANONICAL_HOST
ac65e355 11
9d5a2885
MJ
12AM_INIT_AUTOMAKE([foreign dist-bzip2 no-dist-gzip])
13AM_MAINTAINER_MODE([enable])
ac65e355 14
9d5a2885
MJ
15# Enable silent rules if available (Introduced in AM 1.11)
16m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
ac65e355 17
9d5a2885
MJ
18# Checks for C compiler
19AC_USE_SYSTEM_EXTENSIONS
217108a9 20AC_SYS_LARGEFILE
9d5a2885
MJ
21AC_PROG_CC
22AC_PROG_CC_STDC
217108a9 23
ac65e355 24# Checks for programs.
ac65e355 25AC_PROG_MAKE_SET
aa225880 26LT_INIT
8b9d5b5e
MD
27AC_PROG_YACC
28AC_PROG_LEX
9d5a2885
MJ
29AC_PROG_MKDIR_P
30AC_PROG_LN_S
ac65e355 31
58cb7c63
MJ
32AX_C___ATTRIBUTE__
33AS_IF([test "x$ax_cv___attribute__" = "xyes"],
34 [:],
35 [AC_MSG_ERROR([The compiler does not support __attribute__ extensions])])
36
909d3caa
MJ
37AX_PTHREAD(,[AC_MSG_ERROR([Could not configure pthreads support])])
38LIBS="$PTHREAD_LIBS $LIBS"
39CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
40CC="$PTHREAD_CC"
41
203d6b31
AM
42# Check linker option
43AX_APPEND_LINK_FLAGS([-Wl,--no-as-needed], [LD_NO_AS_NEEDED])
44AC_SUBST([LD_NO_AS_NEEDED])
45
22d7cb55
MJ
46AC_HEADER_STDBOOL
47AC_CHECK_HEADERS([ \
48 fcntl.h \
49 float.h \
50 libintl.h \
51 limits.h \
52 malloc.h \
53 netdb.h \
54 netinet/in.h \
55 stddef.h \
56 sys/socket.h \
57])
9d5a2885 58
331d78f5 59if test ! -f "$srcdir/formats/ctf/metadata/ctf-parser.h"; then
671c16a5 60 if test x"$(basename "$YACC")" != "xbison -y"; then
331d78f5
YB
61 AC_MSG_ERROR([[bison not found and is required when building from git.
62 Please install bison]])
63 fi
a66b40cc
JR
64 AC_PATH_PROG([BISON],[bison])
65 AX_PROG_BISON_VERSION([2.4], [],[
66 AC_MSG_ERROR([[Bison >= 2.4 is required when building from git]])
67 ])
331d78f5
YB
68fi
69
70if test ! -f "$srcdir/formats/ctf/metadata/ctf-lexer.c"; then
71 if test x"$LEX" != "xflex"; then
72 AC_MSG_ERROR([[flex not found and is required when building from git.
73 Please install flex]])
74 fi
fe709541
JR
75 AC_PATH_PROG([FLEX],[flex])
76 AX_PROG_FLEX_VERSION([2.5.35], [],[
77 AC_MSG_ERROR([[Flex >= 2.5.35 is required when building from git]])
78 ])
331d78f5
YB
79fi
80
a6947cca 81AM_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 82
0692ec69
MJ
83# Check what libraries are required on this platform to link sockets programs.
84AX_LIB_SOCKET_NSL
85
ac65e355
MD
86# Checks for typedefs, structures, and compiler characteristics.
87AC_C_INLINE
88AC_TYPE_PID_T
89AC_TYPE_SIZE_T
90
91# Checks for library functions.
22d7cb55
MJ
92AC_FUNC_ALLOCA
93AC_FUNC_FORK
ac65e355 94AC_FUNC_MALLOC
22d7cb55 95AC_FUNC_MKTIME
ac65e355 96AC_FUNC_MMAP
22d7cb55
MJ
97AC_FUNC_REALLOC
98AC_FUNC_STRERROR_R
99AC_CHECK_FUNCS([ \
100 atexit \
101 dirfd \
102 dup2 \
103 ftruncate \
104 gethostbyname \
105 gethostname \
106 gettimeofday \
107 localtime_r \
108 memchr \
109 memset \
110 mkdir \
111 mkdtemp \
112 munmap \
113 rmdir \
114 setenv \
115 socket \
116 strchr \
117 strdup \
118 strerror \
119 strndup \
120 strnlen \
121 strrchr \
122 strtoul \
123 strtoull \
124 tzset \
125 uname \
126])
ac65e355 127
58819898 128MINGW32=no
d2a7e852
MJ
129DEFAULT_ENABLE_DEBUGINFO=yes
130AS_CASE([$host_os],
131 [solaris*|darwin*],
132 [
133 DEFAULT_ENABLE_DEBUGINFO=no
134 ],
135 [mingw*],
136 [
137 MINGW32=yes
138 ]
139)
58819898
JI
140
141AM_CONDITIONAL([BABELTRACE_BUILD_WITH_MINGW], [test "x$MINGW32" = "xyes"])
142
a4dfa07b
MD
143# Check for libuuid
144AC_CHECK_LIB([uuid], [uuid_generate],
145[
146 AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_LIBUUID], 1, [Has libuuid support.])
147 have_libuuid=yes
148],
149[
150 # libuuid not found, check for uuid_create in libc.
151 AC_CHECK_LIB([c], [uuid_create],
152 [
153 AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_LIBC_UUID], 1, [Has libc uuid support.])
154 have_libc_uuid=yes
155 ],
156 [
9d1e7de0
JI
157 # for MinGW32 we have our own internal implemenation of uuid using Windows functions.
158 if test "x$MINGW32" = xno; then
159 AC_MSG_ERROR([Cannot find libuuid uuid_generate nor libc uuid_create. Use [LDFLAGS]=-Ldir to specify their location.])
160 fi
a4dfa07b
MD
161 ])
162]
fd55fc57 163)
a4dfa07b
MD
164AM_CONDITIONAL([BABELTRACE_BUILD_WITH_LIBUUID], [test "x$have_libuuid" = "xyes"])
165AM_CONDITIONAL([BABELTRACE_BUILD_WITH_LIBC_UUID], [test "x$have_libc_uuid" = "xyes"])
fd55fc57 166
f8370579
MD
167# Check for fmemopen
168AC_CHECK_LIB([c], [fmemopen],
169[
170 AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_FMEMOPEN], 1, [Has fmemopen support.])
171]
172)
173
174# Check for open_memstream
175AC_CHECK_LIB([c], [open_memstream],
176[
177 AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_OPEN_MEMSTREAM], 1, [Has open_memstream support.])
178]
179)
180
edcad9c1
JG
181# Check for posix_fallocate
182AC_CHECK_LIB([c], [posix_fallocate],
183[
184 AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_POSIX_FALLOCATE], 1, [Has posix_fallocate support.])
185]
186)
187
ff48c2b0
MD
188# Check for faccessat
189AC_CHECK_LIB([c], [faccessat],
190[
191 AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_FACCESSAT], 1, [Has faccessat support.])
192]
193)
194
0f536a74
TP
195AC_CHECK_LIB([popt], [poptGetContext], [],
196 [AC_MSG_ERROR([Cannot find popt.])]
197)
198
24a3136a
DS
199# For Python
200# SWIG version needed or newer:
201swig_version=2.0.0
202
94a6cea3
JG
203AC_ARG_ENABLE([python-bindings],
204 [AC_HELP_STRING([--enable-python-bindings],
205 [generate Python bindings])],
206 [enable_python=yes], [enable_python=no])
24a3136a
DS
207
208AM_CONDITIONAL([USE_PYTHON], [test "x${enable_python:-yes}" = xyes])
209
210if test "x${enable_python:-yes}" = xyes; then
24a3136a
DS
211 AX_PKG_SWIG($swig_version, [], [ AC_MSG_ERROR([SWIG $swig_version or newer is needed]) ])
212 AM_PATH_PYTHON
213
33287b16
JG
214 AM_PATH_PYTHON_MODULES([PYTHON])
215 # pythondir is the path where extra modules are to be installed
216 pythondir=$PYTHON_PREFIX/$PYTHON_MODULES_PATH
217 # pyexecdir is the path that contains shared objects used by the extra modules
218 pyexecdir=$PYTHON_EXEC_PREFIX/$PYTHON_MODULES_PATH
24a3136a
DS
219 AC_ARG_VAR([PYTHON_INCLUDE], [Include flags for python, bypassing python-config])
220 AC_ARG_VAR([PYTHON_CONFIG], [Path to python-config])
221 AS_IF([test -z "$PYTHON_INCLUDE"], [
222 AS_IF([test -z "$PYTHON_CONFIG"], [
223 AC_PATH_PROGS([PYTHON_CONFIG],
224 [python$PYTHON_VERSION-config python-config],
225 [no],
226 [`dirname $PYTHON`])
94a6cea3 227 AS_IF([test "$PYTHON_CONFIG" = no], [AC_MSG_ERROR([cannot find python-config for $PYTHON. Do you have python-dev installed?])])
24a3136a
DS
228 ])
229 AC_MSG_CHECKING([python include flags])
230 PYTHON_INCLUDE=`$PYTHON_CONFIG --includes`
231 AC_MSG_RESULT([$PYTHON_INCLUDE])
232 ])
94a6cea3
JG
233
234else
235 AC_MSG_NOTICE([You may configure with --enable-python-bindings ]dnl
236[if you want Python bindings.])
237
24a3136a
DS
238fi
239
b5a8598f 240# Optional debuginfo feature (enabled by default)
d2a7e852 241AS_IF([test "x$DEFAULT_ENABLE_DEBUGINFO" = xyes],
351c00cd
JG
242 [AC_ARG_ENABLE([debug-info], [AC_HELP_STRING([--disable-debug-info], [disable the debug-info feature (default on OS X and Solaris)])], [], [enable_debuginfo=yes])],
243 [AC_ARG_ENABLE([debug-info], [AC_HELP_STRING([--enable-debug-info], [enable the debug-info feature (default on Linux)])], [], [enable_debuginfo=no])]
d2a7e852 244)
b5a8598f
AB
245
246AM_CONDITIONAL([ENABLE_DEBUGINFO], [test "x$enable_debuginfo" = xyes])
247AS_IF([test "x$enable_debuginfo" = xyes], [
12471830
JG
248 PKG_CHECK_MODULES(LIBDW, [libdw >= 0.154], [], [AC_MSG_ERROR(Missing libdw (from elfutils >= 0.154) which is required by debug-info. You can disable this feature using --disable-debuginfo.)])
249 PKG_CHECK_MODULES(LIBELF, [libelf >= 0.154], [], [AC_MSG_ERROR(Missing libelf (from elfutils >= 0.154) which is required by debug-info. You can disable this feature using --disable-debuginfo.)])
351c00cd 250 AC_DEFINE([ENABLE_DEBUGINFO], [1], [Define to 1 if you enable the 'debug-info' feature])
b5a8598f
AB
251], [])
252
12471830 253PKG_CHECK_MODULES(GMODULE, [gmodule-2.0 >= 2.0.0])
ac65e355
MD
254AC_SUBST(PACKAGE_LIBS)
255
34d3acc4 256LIBS="$LIBS $GMODULE_LIBS"
37566b71 257PACKAGE_CFLAGS="$GMODULE_CFLAGS -Wall -Wformat"
ac65e355
MD
258AC_SUBST(PACKAGE_CFLAGS)
259
37566b71
MJ
260DEFAULT_INCLUDES="-I\$(top_srcdir) -I\$(top_builddir) -I\$(top_builddir)/include -include config.h"
261AC_SUBST(DEFAULT_INCLUDES)
262
e4d70dc3 263babeltraceincludedir="${includedir}/babeltrace"
70bd0a12
JD
264AC_SUBST(babeltraceincludedir)
265
64a35d1b
JD
266babeltracectfincludedir="${includedir}/babeltrace/ctf"
267AC_SUBST(babeltracectfincludedir)
268
273b65be
JG
269babeltracectfwriterincludedir="${includedir}/babeltrace/ctf-writer"
270AC_SUBST(babeltracectfwriterincludedir)
271
ac65e355
MD
272AC_CONFIG_FILES([
273 Makefile
274 types/Makefile
9d1e7de0 275 compat/Makefile
ac65e355
MD
276 formats/Makefile
277 formats/ctf/Makefile
278 formats/ctf/types/Makefile
1ae19169
MD
279 formats/ctf-text/Makefile
280 formats/ctf-text/types/Makefile
5d93a76e 281 formats/ctf-metadata/Makefile
22133895 282 formats/bt-dummy/Makefile
4a744367 283 formats/lttng-live/Makefile
8b9d5b5e 284 formats/ctf/metadata/Makefile
273b65be 285 formats/ctf/writer/Makefile
4c8bfb7e 286 converter/Makefile
d2c0553c 287 doc/Makefile
1eb0c69c 288 lib/Makefile
74f21e2d 289 lib/prio_heap/Makefile
e92927d1 290 include/Makefile
24a3136a
DS
291 bindings/Makefile
292 bindings/python/Makefile
ac65e355 293 tests/Makefile
19badea8 294 tests/bin/Makefile
aa968dde 295 tests/lib/Makefile
1833a3d1
CB
296 tests/utils/Makefile
297 tests/utils/tap/Makefile
6aa249b5
MD
298 extras/Makefile
299 extras/valgrind/Makefile
d0acc96d 300 babeltrace.pc
e7a7efdb 301 babeltrace-ctf.pc
ac65e355 302])
fcacebd5 303
84be346b
JG
304AC_CONFIG_FILES([tests/lib/test_seek_big_trace], [chmod +x tests/lib/test_seek_big_trace])
305AC_CONFIG_FILES([tests/lib/test_seek_empty_packet], [chmod +x tests/lib/test_seek_empty_packet])
fcacebd5
MJ
306AC_CONFIG_FILES([tests/bin/test_trace_read], [chmod +x tests/bin/test_trace_read])
307AC_CONFIG_FILES([tests/bin/test_intersection], [chmod +x tests/bin/test_intersection])
308AC_CONFIG_FILES([tests/bin/test_packet_seq_num], [chmod +x tests/bin/test_packet_seq_num])
309
ac65e355 310AC_OUTPUT
1e3c16c7
MJ
311
312#
313# Mini-report on what will be built.
314#
315
316PPRINT_INIT
317PPRINT_SET_INDENT(1)
318PPRINT_SET_TS(38)
319
320AS_ECHO
321AS_ECHO("${PPRINT_COLOR_BLDBLU}Babeltrace $PACKAGE_VERSION$PPRINT_COLOR_RST")
322AS_ECHO
323
324PPRINT_SUBTITLE([Features])
325
326# Target architecture we're building for.
327target_arch=$host_cpu
328[
329for f in $CFLAGS; do
330 if test $f = "-m32"; then
331 target_arch="32-bit"
332 elif test $f = "-m64"; then
333 target_arch="64-bit"
334 fi
335done
336]
337PPRINT_PROP_STRING([Target architecture], $target_arch)
338
339# python bindings enabled/disabled
340test "x$enable_python" = "xyes" && value=1 || value=0
341PPRINT_PROP_BOOL([Python bindings], $value)
342
343# python bindings doc enabled/disabled
344test "x$enable_python_bindings_doc" = "xyes" && value=1 || value=0
345PPRINT_PROP_BOOL([Python bindings doc], $value)
346
347# debug-info enabled/disabled
348test "x$enable_debuginfo" = "xyes" && value=1 || value=0
349PPRINT_PROP_BOOL([Debug information output], $value)
350
351
352report_bindir="`eval eval echo $bindir`"
353report_libdir="`eval eval echo $libdir`"
354
355# Print the bindir and libdir this `make install' will install into.
356AS_ECHO
357PPRINT_SUBTITLE([Install directories])
358PPRINT_PROP_STRING([Binaries], [$report_bindir])
359PPRINT_PROP_STRING([Libraries], [$report_libdir])
This page took 0.045192 seconds and 4 git commands to generate.