Update version to v2.0.0-rc2
[babeltrace.git] / configure.ac
CommitLineData
de8bce8a
MJ
1dnl Process this file with autoconf to produce a configure script.
2dnl
3dnl Copyright (c) 2017 EfficiOS, Inc.
4dnl
5dnl Permission is hereby granted, free of charge, to any person obtaining a copy
6dnl of this software and associated documentation files (the "Software"), to deal
7dnl in the Software without restriction, including without limitation the rights
8dnl to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9dnl copies of the Software, and to permit persons to whom the Software is
10dnl furnished to do so, subject to the following conditions:
11dnl
12dnl The above copyright notice and this permission notice shall be included in
13dnl all copies or substantial portions of the Software.
14dnl
15dnl THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16dnl IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17dnl FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18dnl AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19dnl LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20dnl OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21dnl SOFTWARE.
22
23## ##
24## Autoconf base setup ##
25## ##
26
9d594903 27AC_PREREQ([2.50])
de8bce8a 28
a2edfc7d
PP
29m4_define([bt_version_major], [2])
30m4_define([bt_version_minor], [0])
31m4_define([bt_version_patch], [0])
3db793e7 32m4_define([bt_version_extra], [-rc2])
a2edfc7d 33m4_define([bt_version], bt_version_major[.]bt_version_minor[.]bt_version_patch[]bt_version_extra)
de8bce8a
MJ
34
35AC_INIT([babeltrace], bt_version, [jeremie dot galarneau at efficios dot com], [], [https://efficios.com/babeltrace/])
3fbccce7
MD
36
37# Following the numbering scheme proposed by libtool for the library version
38# http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
63976d98
MJ
39m4_define([bt_lib_version_current], [0])
40m4_define([bt_lib_version_revision], [0])
41m4_define([bt_lib_version_age], [0])
42m4_define([bt_lib_version], bt_lib_version_current[:]bt_lib_version_revision[:]bt_lib_version_age)
43
44AC_SUBST([BABELTRACE_LIBRARY_VERSION], bt_lib_version)
3fbccce7 45
57952005 46AC_CONFIG_HEADERS([src/common/config.h])
ac65e355 47AC_CONFIG_AUX_DIR([config])
80e2fb15
MJ
48AC_CONFIG_MACRO_DIR([m4])
49
63976d98
MJ
50AC_DEFINE([BT_VERSION_MAJOR], bt_version_major, [Babeltrace major version])
51AC_DEFINE([BT_VERSION_MINOR], bt_version_minor, [Babeltrace minor version])
52AC_DEFINE([BT_VERSION_PATCH], bt_version_patch, [Babeltrace patch version])
53AC_DEFINE([BT_VERSION_EXTRA], ["]bt_version_extra["], [Babeltrace extra version])
a2edfc7d 54
ac65e355
MD
55AC_CANONICAL_TARGET
56AC_CANONICAL_HOST
80e2fb15 57
de8bce8a
MJ
58
59## ##
60## Automake base setup ##
61## ##
62
392df1b7 63AM_INIT_AUTOMAKE([1.12 foreign dist-bzip2 no-dist-gzip tar-ustar nostdinc])
99e3ba41 64AM_MAINTAINER_MODE([enable])
ac65e355 65
80e2fb15
MJ
66# Enable silent rules if available (Introduced in AM 1.11)
67m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
0671bd13 68
3d5e9596 69
de8bce8a
MJ
70## ##
71## OS specific defaults ##
72## ##
73
74MINGW32=no
58f6d595 75DEFAULT_ENABLE_DEBUG_INFO=yes
de8bce8a
MJ
76LT_NO_UNDEFINED=""
77AS_CASE([$host_os],
78 [solaris*|darwin*],
79 [
80 DEFAULT_ENABLE_DEBUG_INFO=no
81 ],
82 [cygwin*],
83 [
84 DEFAULT_ENABLE_DEBUG_INFO=no
85 LT_NO_UNDEFINED="-no-undefined"
86 ],
87 [mingw*],
88 [
89 MINGW32=yes
90 DEFAULT_ENABLE_DEBUG_INFO=no
91 LT_NO_UNDEFINED="-no-undefined"
92 ]
93)
94
95AM_CONDITIONAL([BABELTRACE_BUILD_WITH_MINGW], [test "x$MINGW32" = "xyes"])
96AC_SUBST(LT_NO_UNDEFINED)
97
98
99## ##
100## C compiler checks ##
101## ##
102
80e2fb15 103AC_USE_SYSTEM_EXTENSIONS
217108a9 104AC_SYS_LARGEFILE
de8bce8a
MJ
105
106# Choose the c compiler
80e2fb15 107AC_PROG_CC
217108a9 108
de8bce8a
MJ
109# Make sure the c compiler supports C99
110AC_PROG_CC_C99([], [AC_MSG_ERROR([The compiler does not support C99])])
ac65e355 111
de8bce8a 112# Make sure the c compiler supports __attributes__
ec8add54 113AX_C___ATTRIBUTE__
de8bce8a
MJ
114AS_IF([test "x$ax_cv___attribute__" != "xyes"],
115 [AC_MSG_ERROR([The compiler does not support __attribute__ extensions])])
ec8add54 116
de8bce8a
MJ
117# Make sur we have pthread support
118AX_PTHREAD([], [AC_MSG_ERROR([Could not configure pthread support])])
119
120# Checks for typedefs, structures, and compiler characteristics.
121AC_C_INLINE
122AC_C_TYPEOF
123AC_TYPE_PID_T
124AC_TYPE_SIZE_T
125AC_TYPE_INT16_T
126AC_TYPE_INT32_T
127AC_TYPE_INT64_T
128AC_TYPE_INT8_T
129AC_TYPE_OFF_T
130AC_TYPE_SSIZE_T
131AC_TYPE_UINT16_T
132AC_TYPE_UINT32_T
133AC_TYPE_UINT64_T
134AC_TYPE_UINT8_T
135AC_CHECK_TYPES([ptrdiff_t])
a2bc83d4 136
de8bce8a
MJ
137
138## ##
139## Header checks ##
140## ##
f0d8d709 141
f847f3ae
MJ
142AC_HEADER_STDBOOL
143AC_CHECK_HEADERS([ \
144 fcntl.h \
145 float.h \
1307d39e 146 ftw.h \
f847f3ae
MJ
147 libintl.h \
148 limits.h \
149 malloc.h \
150 netdb.h \
151 netinet/in.h \
152 stddef.h \
153 sys/socket.h \
de8bce8a 154 sys/time.h
f847f3ae 155])
80e2fb15 156
de8bce8a
MJ
157
158## ##
159## Linker checks ##
160## ##
161
162# Check if the linker supports no-as-needed
163AX_APPEND_LINK_FLAGS([-Wl,--no-as-needed], [LD_NO_AS_NEEDED])
164AC_SUBST([LD_NO_AS_NEEDED])
165
11cc4f3d
MJ
166# Check if the linker supports whole-archive
167AX_CHECK_LINK_FLAG([-Wl,--whole-archive,--no-whole-archive],
168 [
169 AC_SUBST([LD_WHOLE_ARCHIVE], [-Wl,--whole-archive,])
170 AC_SUBST([LD_NO_WHOLE_ARCHIVE], [,--no-whole-archive])
171 ],[
172 # Fallback to force_load for the macOS linker
173 AX_CHECK_LINK_FLAG([-Wl,-force_load],
174 [
175 AC_SUBST([LD_WHOLE_ARCHIVE], [-Wl,-force_load,])
176 AC_SUBST([LD_NO_WHOLE_ARCHIVE], [])
177 ],[
178 AC_MSG_WARN([Can't find a linker option to force the inclusion of the static plugin archive objects.])
179 ]
180 )
181 ]
182)
183
de8bce8a
MJ
184# Initialize and configure libtool
185LT_INIT([win32-dll])
186
187
188## ##
189## Programs checks ##
190## ##
191
192AC_PROG_MAKE_SET
193AC_PROG_MKDIR_P
194AC_PROG_LN_S
195
8a121625
MJ
196# set $IN_GIT_REPO if we're in the Git repository; the `bootstrap` file
197# is not distributed in tarballs
198AS_IF([test -f "$srcdir/bootstrap"], [in_git_repo=yes], [in_git_repo=no])
199AM_CONDITIONAL([IN_GIT_REPO], [test "x$in_git_repo" = "xyes"])
200
201# check for bison
202AC_PROG_YACC
6245c710 203AX_PROG_BISON_VERSION([2.5], [have_bison=yes])
8a121625
MJ
204
205AS_IF([test "x$have_bison" != "xyes"], [
206 AS_IF([test "x$in_git_repo" = "xyes"], [
de8bce8a 207 AC_MSG_FAILURE([dnl
8a121625
MJ
208Bison >= 2.4 is required when building from the Git repository. You can
209set the YACC variable to override automatic detection.
210 ])
211 ], [
de8bce8a 212 AC_MSG_WARN([dnl
8a121625
MJ
213Missing Bison >= 2.4. Note that the parser files are already built in
214this distribution tarball, so Bison is only needed if you intend to
215modify their sources. You can set the YACC variable to override automatic
216detection.
217 ])
218 ])
219])
220AM_CONDITIONAL([HAVE_BISON], [test "x$have_bison" = "xyes"])
221
222# check for flex
223AC_PROG_LEX
224AX_PROG_FLEX_VERSION([2.5.35], [have_flex=yes])
225
226AS_IF([test "x$have_flex" != "xyes"], [
227 AS_IF([test "x$in_git_repo" = "xyes"], [
de8bce8a 228 AC_MSG_FAILURE([dnl
8a121625
MJ
229Flex >= 2.5.35 is required when building from the Git repository. You can
230set the LEX variable to override automatic detection.
231 ])
232 ], [
de8bce8a 233 AC_MSG_WARN([dnl
8a121625
MJ
234Missing Flex >= 2.5.35. Note that the lexer files are already built in
235this distribution tarball, so Flex is only needed if you intend to
236modify their sources. You can set the LEX variable to override automatic
237detection.
238 ])
239 ])
240])
241AM_CONDITIONAL([HAVE_FLEX], [test "x$have_flex" = "xyes"])
331d78f5 242
e5f5317f 243
de8bce8a
MJ
244## ##
245## Library checks ##
246## ##
ac65e355 247
39fa4402
MJ
248# Check what libraries are required on this platform to link sockets programs.
249AX_LIB_SOCKET_NSL
250
791f3058
SM
251# Check for glib >= 2.28 with gmodule support
252AM_PATH_GLIB_2_0([2.28.0], [],
253 AC_MSG_ERROR([glib >= 2.28 is required - download it from ftp://ftp.gtk.org/pub/gtk]),
de8bce8a
MJ
254 [gmodule-no-export]
255)
ac65e355
MD
256
257# Checks for library functions.
f847f3ae
MJ
258AC_FUNC_ALLOCA
259AC_FUNC_FORK
f847f3ae 260AC_FUNC_MKTIME
ac65e355 261AC_FUNC_MMAP
f847f3ae 262AC_FUNC_STRERROR_R
de8bce8a 263AC_FUNC_STRNLEN
2f8c0e47 264AC_CHECK_FUNCS([ \
f847f3ae 265 atexit \
f847f3ae
MJ
266 dup2 \
267 ftruncate \
268 gethostbyname \
f847f3ae
MJ
269 gettimeofday \
270 localtime_r \
271 memchr \
272 memset \
273 mkdir \
274 mkdtemp \
275 munmap \
276 rmdir \
277 setenv \
278 socket \
279 strchr \
280 strdup \
281 strerror \
282 strndup \
283 strnlen \
284 strrchr \
de8bce8a 285 strstr \
f847f3ae
MJ
286 strtoul \
287 strtoull \
288 tzset \
2f8c0e47 289])
ac65e355 290
34064482
MJ
291# AC_FUNC_MALLOC causes problems when cross-compiling.
292#AC_FUNC_MALLOC
293#AC_FUNC_REALLOC
294
f8370579
MD
295# Check for fmemopen
296AC_CHECK_LIB([c], [fmemopen],
de8bce8a 297 [AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_FMEMOPEN], 1, [Has fmemopen support.])]
f8370579
MD
298)
299
300# Check for open_memstream
301AC_CHECK_LIB([c], [open_memstream],
de8bce8a 302 [AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_OPEN_MEMSTREAM], 1, [Has open_memstream support.])]
f8370579
MD
303)
304
a323afb2
JG
305# Check for posix_fallocate
306AC_CHECK_LIB([c], [posix_fallocate],
de8bce8a 307 [AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_POSIX_FALLOCATE], 1, [Has posix_fallocate support.])]
a323afb2
JG
308)
309
de8bce8a
MJ
310## ##
311## User variables ##
312## ##
313
314AC_ARG_VAR([PYTHON_INCLUDE], [Include flags for Python, bypassing python-config])
90107d51 315AC_ARG_VAR([PYTHON_LDFLAGS], [Linker flags for Python, bypassing python-config])
de8bce8a
MJ
316AC_ARG_VAR([PYTHON_CONFIG], [Path to python-config])
317
4a2a7ed1
MJ
318# BABELTRACE_PLUGINS_DIR: Plugins directory
319AC_ARG_VAR([BABELTRACE_PLUGINS_DIR], [built-in plugins install directory [LIBDIR/babeltrace2/plugins]])
320AS_IF([test "x$BABELTRACE_PLUGINS_DIR" = x], [BABELTRACE_PLUGINS_DIR='${libdir}/babeltrace2/plugins'])
a094f13b 321
7b783015
MJ
322# BABELTRACE_PLUGIN_PROVIDERS_DIR: Plugin providers directory
323AC_ARG_VAR([BABELTRACE_PLUGIN_PROVIDERS_DIR], [built-in plugin providers install directory [LIBDIR/babeltrace2/plugin-providers]])
324AS_IF([test "x$BABELTRACE_PLUGIN_PROVIDERS_DIR" = x], [BABELTRACE_PLUGIN_PROVIDERS_DIR='${libdir}/babeltrace2/plugin-providers'])
325
de8bce8a 326# BABELTRACE_MINIMAL_LOG_LEVEL:
d387e24f 327AC_ARG_VAR([BABELTRACE_MINIMAL_LOG_LEVEL], [Minimal log level for Babeltrace program, library, and plugins (TRACE, DEBUG (default), or INFO)])
6657feda 328AS_IF([test "x$BABELTRACE_MINIMAL_LOG_LEVEL" = x], [BABELTRACE_MINIMAL_LOG_LEVEL="DEBUG"])
c9ecaa78 329AS_IF([test "$BABELTRACE_MINIMAL_LOG_LEVEL" != "TRACE" && \
de8bce8a 330 test "$BABELTRACE_MINIMAL_LOG_LEVEL" != "DEBUG" && \
d387e24f
PP
331 test "$BABELTRACE_MINIMAL_LOG_LEVEL" != "INFO"],
332 [AC_MSG_ERROR([Invalid BABELTRACE_MINIMAL_LOG_LEVEL value ($BABELTRACE_MINIMAL_LOG_LEVEL): use TRACE, DEBUG, or INFO.])]
de8bce8a 333)
d82fa4c1 334AC_DEFINE_UNQUOTED([BT_MINIMAL_LOG_LEVEL], [BT_LOG_$BABELTRACE_MINIMAL_LOG_LEVEL], [Minimal log level])
de8bce8a 335
d244c559
PP
336# BABELTRACE_DEV_MODE:
337AC_ARG_VAR([BABELTRACE_DEV_MODE], [Set to 1 to enable the Babeltrace developer mode (enables run-time checks for plugin developers)])
338AS_IF([test "x$BABELTRACE_DEV_MODE" = x1], [
d244c559
PP
339 AC_DEFINE([BT_DEV_MODE], 1, [Babeltrace developer mode])
340], [BABELTRACE_DEV_MODE=0])
341
342# BABELTRACE_DEBUG_MODE:
343AC_ARG_VAR([BABELTRACE_DEBUG_MODE], [Set to 1 to enable the Babeltrace debug mode (enables internal assertions for Babeltrace maintainers)])
344AS_IF([test "x$BABELTRACE_DEBUG_MODE" = x1], [
345 AC_DEFINE([BT_DEBUG_MODE], 1, [Babeltrace debug mode])
346], [BABELTRACE_DEBUG_MODE=0])
347
de8bce8a
MJ
348
349## ##
350## Optionnal features selection ##
351## ##
24a3136a 352
de8bce8a
MJ
353# Python bindings
354# Disabled by default
94a6cea3 355AC_ARG_ENABLE([python-bindings],
de8bce8a
MJ
356 [AC_HELP_STRING([--enable-python-bindings], [build the Python bindings])],
357 [], dnl AC_ARG_ENABLE will fill enable_python_bindings with the user choice
358 [enable_python_bindings=no]
359)
360
361# Python bindings documentation
362# Disabled by default
363AC_ARG_ENABLE([python-bindings-doc],
364 [AC_HELP_STRING([--enable-python-bindings-doc], [build the Python bindings documentation])],
365 [], dnl AC_ARG_ENABLE will fill enable_python_bindings_doc with the user choice
366 [enable_python_bindings_doc=no]
367)
368
de8bce8a
MJ
369# Python plugins
370# Disabled by default
371AC_ARG_ENABLE([python-plugins],
372 [AC_HELP_STRING([--enable-python-plugins], [enable the Python plugins support for the library and converter])],
373 [], dnl AC_ARG_ENABLE will fill enable_python_plugins with the user choice
374 [enable_python_plugins=no]
375)
376
377# Debug info
378# Enabled by default, except on some platforms
379AC_ARG_ENABLE([debug-info],
380 [AC_HELP_STRING([--disable-debug-info], [disable the debug info support (default on macOS, Solaris and Windows)])],
381 [], dnl AC_ARG_ENABLE will fill enable_debug_info with the user choice
382 [enable_debug_info="$DEFAULT_ENABLE_DEBUG_INFO"]
383)
384
385# API documentation
386# Disabled by default
387AC_ARG_ENABLE([api-doc],
388 [AC_HELP_STRING([--enable-api-doc], [build the HTML API documentation])],
389 [enable_api_doc=$enableval],
390 [enable_api_doc=no]
391)
392
393# Built-in plugins
394# Disabled by default
395AC_ARG_ENABLE([built-in-plugins],
142ac9b0 396 [AC_HELP_STRING([--enable-built-in-plugins], [Statically-link in-tree plug-ins into the babeltrace2 executable])],
de8bce8a
MJ
397 [], dnl AC_ARG_ENABLE will fill enable_built_in_plugins with the user choice
398 [enable_built_in_plugins=no]
399)
400
401# Built-in python plugin support
402# Disabled by default
403AC_ARG_ENABLE([built-in-python-plugin-support],
404 [AC_HELP_STRING([--enable-built-in-python-plugin-support], [Statically-link Python plugin support into the babeltrace library])],
405 [], dnl AC_ARG_ENABLE will fill enable_built_in_python_plugin_support with the user choice
406 [enable_built_in_python_plugin_support=no]
407)
408
838dd456
PP
409# Man pages
410# Enabled by default
411AC_ARG_ENABLE([man-pages],
412 [AS_HELP_STRING([--disable-man-pages], [Do not build and install man pages (already built in a distributed tarball])],
413 [], dnl AC_ARG_ENABLE will fill enable_built_in_plugins with the user choice
414 [enable_man_pages=yes]
415)
416
de8bce8a
MJ
417
418# Set automake variables for optionnal feature conditionnals in Makefile.am
419AM_CONDITIONAL([ENABLE_PYTHON_BINDINGS], [test "x$enable_python_bindings" = xyes])
420AM_CONDITIONAL([ENABLE_PYTHON_BINDINGS_DOC], [test "x$enable_python_bindings_doc" = xyes])
de8bce8a
MJ
421AM_CONDITIONAL([ENABLE_PYTHON_PLUGINS], [test "x$enable_python_plugins" = xyes])
422AM_CONDITIONAL([ENABLE_DEBUG_INFO], [test "x$enable_debug_info" = xyes])
423AM_CONDITIONAL([ENABLE_API_DOC], [test "x$enable_api_doc" = xyes])
424AM_CONDITIONAL([ENABLE_BUILT_IN_PLUGINS], [test "x$enable_built_in_plugins" = xyes])
425AM_CONDITIONAL([ENABLE_BUILT_IN_PYTHON_PLUGIN_SUPPORT], [test "x$enable_built_in_python_plugin_support" = xyes])
838dd456 426AM_CONDITIONAL([ENABLE_MAN_PAGES], [test "x$enable_man_pages" = xyes])
b789e85d 427AM_CONDITIONAL([ENABLE_PYTHON_COMMON_DEPS], [test "x$enable_python_bindings" = xyes || test "x$enable_python_plugins" = xyes])
de8bce8a
MJ
428
429# Set defines for optionnal features conditionnals in the source code
430
431## jgalar: still used?
432AS_IF([test "x$enable_python_plugins" = xyes],
433 [AC_DEFINE([PYTHON_PLUGINS], [1], [Python plugin support.])]
434)
435
436AS_IF([test "x$enable_debug_info" = xyes],
437 [AC_DEFINE([ENABLE_DEBUG_INFO], [1], [Define to 1 if you enable the 'debug info' feature])]
438)
439
440AS_IF([test "x$enable_built_in_plugins" = xyes],
441 [AC_DEFINE([BT_BUILT_IN_PLUGINS], [1], [Define to 1 to register plug-in attributes in static executable sections])]
442)
443
444AS_IF([test "x$enable_built_in_python_plugin_support" = xyes],
445 [AC_DEFINE([BT_BUILT_IN_PYTHON_PLUGIN_SUPPORT], [1], [Define to 1 to register plug-in attributes in static executable sections])]
446)
447
838dd456
PP
448AS_IF([test "x$enable_debug_info" = xyes],
449 [ENABLE_DEBUG_INFO_VAL=1],
450 [ENABLE_DEBUG_INFO_VAL=0]
451)
452
453AC_SUBST([ENABLE_DEBUG_INFO_VAL])
454
de8bce8a 455
f6a5e476 456# Check for conflicting optional features user choices
de8bce8a
MJ
457
458AS_IF([test "x$enable_python_bindings" = xno],
459 [
460 AS_IF([test "x$enable_python_bindings_doc" = xyes], [AC_MSG_ERROR([--enable-python-bindings-doc was specified without --enable-python-bindings])])
de8bce8a
MJ
461 ]
462)
463
464AS_IF([test "x$enable_built_in_plugins" = xyes],
465 [
466 # Built-in plug-ins are only available when the --disable-shared --enable-static options are used.
142ac9b0
MJ
467 AS_IF([test "x$enable_static" != xyes], [AC_MSG_ERROR(--enable-static must be used to bundle plug-ins in the babeltrace2 executable)])
468 AS_IF([test "x$enable_shared" = xyes], [AC_MSG_ERROR(--disable-shared must be used to bundle plug-ins in the babeltrace2 executable)])
de8bce8a
MJ
469 ]
470)
471
472AS_IF([test "x$enable_built_in_python_plugin_support" = xyes],
473 [
142ac9b0 474 AS_IF([test "x$enable_python_plugins" = xno], [AC_MSG_ERROR([--enable-python-plugins must be used to bundle Python plugin support in the babeltrace2 executable])])
de8bce8a 475 # Built-in plug-ins are only available when the --disable-shared --enable-static options are used.
142ac9b0
MJ
476 AS_IF([test "x$enable_static" != xyes], [AC_MSG_ERROR(--enable-static must be used to bundle Python plugin support in the babeltrace2 executable)])
477 AS_IF([test "x$enable_shared" = xyes], [AC_MSG_ERROR(--disable-shared must be used to bundle Python plugin support in the babeltrace2 executable)])
de8bce8a 478 ]
55bb57e0 479)
9cf643d1 480
4f5f37d9 481
de8bce8a
MJ
482# Check for optionnal features dependencies
483
484AS_IF([test "x$enable_python_bindings" = xyes],
485 [AX_PKG_SWIG(2.0.0, [], [AC_MSG_ERROR([SWIG 2.0.0 or newer is required to build the python bindings])])]
486)
487
b789e85d 488AM_PATH_PYTHON([3.0], [
1b39e2de 489 AM_PATH_PYTHON_MODULES([PYTHON])
b789e85d 490
1b39e2de
JG
491 # pythondir is the path where extra modules are to be installed
492 pythondir=$PYTHON_PREFIX/$PYTHON_MODULES_PATH
b789e85d 493
1b39e2de
JG
494 # pyexecdir is the path that contains shared objects used by the extra modules
495 pyexecdir=$PYTHON_EXEC_PREFIX/$PYTHON_MODULES_PATH
b789e85d
PP
496
497 AS_IF([test -z "$PYTHON_CONFIG"], [
498 AC_PATH_PROGS([PYTHON_CONFIG],
499 [python$PYTHON_VERSION-config python-config],
500 [],
501 [`dirname $PYTHON`])
24a3136a 502 ])
b789e85d
PP
503
504 AS_IF([test -n "$PYTHON_CONFIG"], [
505 AS_IF([test -z "$PYTHON_INCLUDE"], [
506 AC_MSG_CHECKING([Python include flags])
507 PYTHON_INCLUDE=`$PYTHON_CONFIG --includes`
508 AC_MSG_RESULT([$PYTHON_INCLUDE])
509 ])
510
511 AS_IF([test -z "$PYTHON_LDFLAGS"], [
512 AC_MSG_CHECKING([Python library flags])
513 PYTHON_LDFLAGS=`$PYTHON_CONFIG --ldflags`
514 AC_MSG_RESULT([$PYTHON_LDFLAGS])
55bb57e0 515 ])
55bb57e0 516 ])
b789e85d
PP
517], [:])
518
519AS_IF([test "$PYTHON" != :], [have_python=yes], [have_python=no])
520AS_IF([test -n "$PYTHON_CONFIG"], [have_python_dev=yes], [have_python_dev=no])
521
522AM_CONDITIONAL([HAVE_PYTHON], [test "x$have_python" = xyes])
523AM_CONDITIONAL([HAVE_PYTHON_DEV], [test "x$have_python_dev" = xyes])
524
525AS_IF([test "x$enable_python_bindings" = xyes || test "x$enable_python_plugins" = xyes], [
526 AS_IF([test "x$have_python_dev" = xno], [
527 AC_MSG_ERROR([Cannot find a suitable python-config. You can override the python-config path with the PYTHON_CONFIG environment variable.])
528 ])
529])
55bb57e0 530
de8bce8a
MJ
531AS_IF([test "x$enable_python_bindings_doc" = xyes],
532 [
17137804
PP
533 AM_CHECK_PYTHON_SPHINX([PYTHON])
534 AS_IF([test "x$PYTHON_SPHINX_EXISTS" = xno],
de8bce8a 535 [AC_MSG_ERROR([The Sphinx package for Python 3 is required to build the Python bindings documentation])]
4f5f37d9 536 )
de8bce8a
MJ
537 ]
538)
4f5f37d9 539
de8bce8a
MJ
540AS_IF([test "x$enable_debug_info" = xyes],
541 [
542 # Check if libelf and libdw are present
d9796e27
MJ
543 AC_CHECK_LIB([elf], [elf_version], [:], [AC_MSG_ERROR(Missing libelf (from elfutils >= 0.154) which is required by debug info. You can disable this feature using --disable-debug-info.)])
544 AC_CHECK_LIB([dw], [dwarf_begin], [:], [AC_MSG_ERROR(Missing libdw (from elfutils >= 0.154) which is required by debug info. You can disable this feature using --disable-debug-info.)])
de8bce8a 545 BT_LIB_ELFUTILS([0], [154], [:], [AC_MSG_ERROR(elfutils >= 0.154 is required to use the debug info feature. You can disable this feature using --disable-debug-info.)])
d9796e27 546 ELFUTILS_LIBS="-lelf -ldw"
de8bce8a
MJ
547 ]
548)
d9796e27 549AC_SUBST([ELFUTILS_LIBS])
6fbd4105 550
de8bce8a
MJ
551AS_IF([test "x$enable_api_doc" = "xyes"],
552 [
553 DX_DOXYGEN_FEATURE(ON)
554 DX_DOT_FEATURE(OFF)
555 DX_HTML_FEATURE(ON)
556 DX_CHM_FEATURE(OFF)
557 DX_CHI_FEATURE(OFF)
558 DX_MAN_FEATURE(OFF)
559 DX_RTF_FEATURE(OFF)
560 DX_XML_FEATURE(OFF)
561 DX_PDF_FEATURE(OFF)
562 DX_PS_FEATURE(OFF)
563 DX_INIT_DOXYGEN([Babeltrace], [$(srcdir)/Doxyfile], [output])
564 AS_IF([test -z "$DX_DOXYGEN"],
565 [AC_MSG_ERROR([You need doxygen to enable the API documentation])]
566 )
567 ]
568)
ac65e355 569
838dd456
PP
570have_asciidoc_xmlto=no
571warn_prebuilt_man_pages=no
572
77a4634e
MJ
573AC_PATH_PROG([ASCIIDOC], [asciidoc], [no])
574AC_PATH_PROG([XMLTO], [xmlto], [no])
838dd456 575
77a4634e 576AS_IF([test "x$enable_man_pages" = "xyes"], [
838dd456
PP
577 AS_IF([test "x$ASCIIDOC" = "xno" || test "x$XMLTO" = "xno"], [
578 AS_IF([test "x$in_git_repo" = "xyes"], [
579 # this is an error because we're in the Git repo, which
580 # means the man pages are not already generated for us,
581 # thus asciixmlto are required because we were asked
582 # to build the man pages
583 AC_MSG_ERROR([
584You need asciidoc and xmlto to build the Babeltrace man pages. Use
585--disable-man-pages to disable building the man pages, in which case
586they will not be installed.
587 ])
588 ], [
589 # only warn here: since we're in the tarball, the man
590 # pages should already be generated at this point, thus
591 # asciidoc/xmlto are not strictly required
592 warn_prebuilt_man_pages=yes
593 ])
594 ], [
595 have_asciidoc_xmlto=yes
596 ])
597])
598
599# export AsciiDoc and xmlto existence
600AM_CONDITIONAL([HAVE_ASCIIDOC_XMLTO], [test "x$have_asciidoc_xmlto" = "xyes"])
601
602# a wonderful hack that seems necessary because $libdir is
603# literally `${exec_prefix}/lib`, and $exec_prefix is set to `NONE`
604# by autoconf when it's not specified by the user
605AS_IF([test "x$exec_prefix" = xNONE], [
606 AS_IF([test "x$prefix" = xNONE], [
607 PREFIX="$ac_default_prefix"
608 ], [
609 PREFIX="$prefix"
610 ])
611
612 LIBDIR="$PREFIX/lib"
613], [
614 LIBDIR="$libdir"
615])
616
617AC_SUBST(LIBDIR)
618
3ed277a6
SM
619# CFLAGS from libraries (the glib ones are needed for the following sizeof
620# test).
621AM_CFLAGS="${PTHREAD_CFLAGS} ${GLIB_CFLAGS}"
38424656 622
0ede31e8
MJ
623# Check that the current size_t matches the size that glib thinks it should
624# be. This catches problems on multi-arch where people try to do a 32-bit
625# build while pointing at 64-bit glib headers. This is a common error because
626# glib.h is not platform specific but it includes glibconfig.h which is and
627# is usually installed in a non-standard path.
628
3ed277a6
SM
629# Do this before enabling all the warning flags, as the
630# AC_LANG_PROGRAM-generated program may generate some warning, which makes this
631# test fail unnecessarily.
632
ecca2f36
MJ
633# Older versions of the pkg-config macros disallows PKG_* in the autoconf
634# output. Specifically allow pkg_config_libdir to be able to print the
635# error message.
636m4_pattern_allow([PKG_CONFIG_LIBDIR])
637
0ede31e8
MJ
638save_CFLAGS=${CFLAGS}
639CFLAGS="${CFLAGS} ${AM_CFLAGS}"
640AC_COMPILE_IFELSE([
641 AC_LANG_PROGRAM([dnl
642#include <glib.h>
643#include <unistd.h>
644 ], [dnl
645G_STATIC_ASSERT(sizeof(size_t) == GLIB_SIZEOF_SIZE_T);
646 ])
647],[:],[
648 AC_MSG_ERROR([dnl
649sizeof(size_t) doesn't match GLIB_SIZEOF_SIZE_T. You probably need to set
650PKG_CONFIG_LIBDIR to point to the right pkg-config files for your build
651target.
652 ])
653])
654CFLAGS=${save_CFLAGS}
655
3ed277a6
SM
656# Detect C and LD warning flags supported by the compiler.
657AX_COMPILER_FLAGS(
658 [WARN_CFLAGS], dnl CFLAGS variable name
659 [WARN_LDFLAGS], dnl LDFLAGS variable name (unused for now)
660 [], dnl is-release
661 [], dnl Extra base CFLAGS
662 [ dnl Extra "yes" CFLAGS
663 dnl Disable these flags, either because we don't want them
664 dnl or because we want them but are not ready to enable them
665 dnl yet.
666 -Wno-sign-compare dnl
667 -Wno-inline dnl
668 -Wno-declaration-after-statement dnl
669 -Wno-switch-enum dnl
670 -Wno-switch-default dnl
671 -Wno-packed dnl
672 -Wno-pointer-arith dnl
673 -Wno-format-nonliteral dnl
3ed277a6 674 -Wno-double-promotion dnl
3ed277a6 675 -Wno-cast-align dnl
3ed277a6
SM
676 ])
677
678# CFLAGS from AX_COMPILER_FLAGS.
679AM_CFLAGS="${AM_CFLAGS} ${WARN_CFLAGS}"
680
681# The test used in AX_COMPILER_FLAGS, generated using AC_LANG_PROGRAM, is
682# written in such a way that it triggers a -Wold-style-definition warning. So
683# if the user has -Werror in their CFLAGS, that warning flag will end up
684# disabled, because the test program will not build.
685#
686# Enable it here unconditionally. It is supported by GCC >= 4.8 and by Clang
687# (it is accepted for compatibility although it has no effect), and there is
688# not reason to not want it.
689
690AM_CFLAGS="${AM_CFLAGS} -Wold-style-definition"
691
692# We want this one to always be an error.
693AM_CFLAGS="${AM_CFLAGS} -Werror=implicit-function-declaration"
694
695# Done for AM_CFLAGS.
696AC_SUBST(AM_CFLAGS)
697
698# Set global CPPFLAGS in AM_CPPFLAGS
699AM_CPPFLAGS="-I\$(top_srcdir)/include -I\$(top_builddir)/src -I\$(top_srcdir)/src -include common/config.h"
700AC_SUBST(AM_CPPFLAGS)
701
702# Add glib to global link libs
703LIBS="$LIBS $GLIB_LIBS"
704
de8bce8a 705# Abuse autoconf's AC_ARG_PROGRAM output variable 'program_transform_name'
142ac9b0 706# to rename babeltrace2.bin to babeltrace2 at install time.
0a904e93 707program_transform_name="s&babeltrace2\.bin&babeltrace2&;$program_transform_name"
33b34c43 708AC_SUBST(program_transform_name)
591999ca 709
ac65e355 710AC_CONFIG_FILES([
dc3fffef 711 doc/api/Doxyfile
57952005 712 doc/api/Makefile
4f5f37d9
PP
713 doc/bindings/Makefile
714 doc/bindings/python/Makefile
12e02f34 715 doc/contributing-images/Makefile
57952005
MJ
716 doc/Makefile
717 doc/man/asciidoc-attrs.conf
718 doc/man/Makefile
e92927d1 719 include/Makefile
57952005 720 Makefile
7263c7a9 721 src/argpar/Makefile
77a5caaf 722 src/autodisc/Makefile
57952005
MJ
723 src/babeltrace2-ctf-writer.pc
724 src/babeltrace2.pc
725 src/bindings/Makefile
a90c9738 726 src/bindings/python/bt2/bt2/version.py
57952005
MJ
727 src/bindings/python/bt2/Makefile
728 src/bindings/python/bt2/setup.py
729 src/bindings/python/Makefile
730 src/cli/Makefile
731 src/common/Makefile
732 src/compat/Makefile
733 src/ctfser/Makefile
734 src/ctf-writer/Makefile
735 src/fd-cache/Makefile
736 src/lib/graph/Makefile
737 src/lib/graph/message/Makefile
738 src/lib/Makefile
739 src/lib/plugin/Makefile
740 src/lib/prio-heap/Makefile
741 src/lib/trace-ir/Makefile
742 src/logging/Makefile
743 src/Makefile
9240924b
FD
744 src/plugins/common/Makefile
745 src/plugins/common/muxing/Makefile
b7fa35fc 746 src/plugins/common/param-validation/Makefile
57952005
MJ
747 src/plugins/ctf/common/bfcr/Makefile
748 src/plugins/ctf/common/Makefile
749 src/plugins/ctf/common/metadata/Makefile
750 src/plugins/ctf/common/msg-iter/Makefile
57952005
MJ
751 src/plugins/ctf/fs-sink/Makefile
752 src/plugins/ctf/fs-src/Makefile
753 src/plugins/ctf/lttng-live/Makefile
754 src/plugins/ctf/Makefile
755 src/plugins/lttng-utils/debug-info/Makefile
756 src/plugins/lttng-utils/Makefile
757 src/plugins/Makefile
758 src/plugins/text/dmesg/Makefile
759 src/plugins/text/Makefile
760 src/plugins/text/pretty/Makefile
a0bcd369 761 src/plugins/text/details/Makefile
57952005
MJ
762 src/plugins/utils/counter/Makefile
763 src/plugins/utils/dummy/Makefile
764 src/plugins/utils/Makefile
765 src/plugins/utils/muxer/Makefile
766 src/plugins/utils/trimmer/Makefile
2d7aa9b6 767 src/py-common/Makefile
57952005 768 src/python-plugin-provider/Makefile
f956eb2d 769 src/param-parse/Makefile
ec3e1721 770 tests/bitfield/Makefile
e40bd1f0 771 tests/ctf-writer/Makefile
7263c7a9 772 tests/argpar/Makefile
aa968dde 773 tests/lib/Makefile
cbb9e0b1 774 tests/lib/test-plugin-plugins/Makefile
57952005 775 tests/Makefile
b7fa35fc 776 tests/param-validation/Makefile
57952005 777 tests/plugins/Makefile
130858eb
PP
778 tests/plugins/src.ctf.fs/Makefile
779 tests/plugins/src.ctf.fs/succeed/Makefile
eba776e3
FD
780 tests/plugins/sink.ctf.fs/Makefile
781 tests/plugins/sink.ctf.fs/succeed/Makefile
82c537ae 782 tests/plugins/flt.lttng-utils.debug-info/Makefile
241aad0a
FD
783 tests/plugins/flt.utils.muxer/Makefile
784 tests/plugins/flt.utils.muxer/succeed/Makefile
b7cbc799 785 tests/plugins/flt.utils.trimmer/Makefile
1833a3d1
CB
786 tests/utils/Makefile
787 tests/utils/tap/Makefile
ac65e355 788])
c41a7502 789
ac65e355 790AC_OUTPUT
1a0399f9
MJ
791
792#
793# Mini-report on what will be built.
794#
795
796PPRINT_INIT
797PPRINT_SET_INDENT(1)
798PPRINT_SET_TS(38)
799
800AS_ECHO
801AS_ECHO("${PPRINT_COLOR_BLDBLU}Babeltrace $PACKAGE_VERSION$PPRINT_COLOR_RST")
802AS_ECHO
803
4266f2ad 804PPRINT_SUBTITLE([System])
1a0399f9
MJ
805
806# Target architecture we're building for.
807target_arch=$host_cpu
808[
809for f in $CFLAGS; do
810 if test $f = "-m32"; then
811 target_arch="32-bit"
812 elif test $f = "-m64"; then
813 target_arch="64-bit"
814 fi
815done
816]
beb0fb75 817
4266f2ad 818PPRINT_PROP_STRING([Target architecture], $target_arch)
d1dab1d2 819
4266f2ad
PP
820AS_ECHO
821PPRINT_SUBTITLE([Python 3 language support])
b789e85d
PP
822test "x$have_python" = "xyes" && value=1 || value=0
823PPRINT_PROP_BOOL([Have Python interpreter], $value)
824test "x$have_python_dev" = "xyes" && value=1 || value=0
825PPRINT_PROP_BOOL([Have Python development libraries], $value)
55bb57e0 826test "x$enable_python_bindings" = "xyes" && value=1 || value=0
1a0399f9 827PPRINT_PROP_BOOL([Python bindings], $value)
55bb57e0
PP
828test "x$enable_python_plugins" = "xyes" && value=1 || value=0
829PPRINT_PROP_BOOL([Python plugin support], $value)
b789e85d
PP
830AS_IF([test "x$have_python" = "xyes"], [
831 PPRINT_PROP_STRING([Python interpreter path], [$PYTHON])
832])
833AS_IF([test "x$have_python_dev" = "xyes"], [
834 PPRINT_PROP_STRING([python-config path], [$PYTHON_CONFIG])
4266f2ad 835 PPRINT_PROP_STRING([Python include paths], [$PYTHON_INCLUDE])
90107d51 836 PPRINT_PROP_STRING([Python linker flags], [$PYTHON_LDFLAGS])
b789e85d
PP
837])
838AS_IF([test "x$enable_python_bindings" = "xyes"], [
03719f0a
SM
839 PPRINT_PROP_STRING([SWIG executable], [$SWIG])
840 PPRINT_PROP_STRING([SWIG library], [$SWIG_LIB])
4266f2ad 841])
55bb57e0 842
4266f2ad
PP
843AS_ECHO
844PPRINT_SUBTITLE([Plugins])
845PPRINT_PROP_BOOL(['ctf' plugin], 1)
de8bce8a 846test "x$enable_debug_info" = "xyes" && value=1 || value=0
4266f2ad
PP
847PPRINT_PROP_BOOL(['lttng-utils' plugin], $value)
848PPRINT_PROP_BOOL(['text' plugin], 1)
849PPRINT_PROP_BOOL(['utils' plugin], 1)
850
851AS_ECHO
852PPRINT_SUBTITLE([Built-in features])
de8bce8a 853test "x$enable_built_in_plugins" = "xyes" && value=1 || value=0
4266f2ad 854PPRINT_PROP_BOOL([Built-in plugins], $value)
de8bce8a 855test "x$enable_built_in_python_plugin_support" = "xyes" && value=1 || value=0
6fbd4105
PP
856PPRINT_PROP_BOOL([Built-in Python plugin support], $value)
857
4266f2ad
PP
858AS_ECHO
859PPRINT_SUBTITLE([Documentation])
838dd456
PP
860
861# man pages build enabled/disabled
862m4_pushdef([build_man_pages_msg], [Build and install man pages])
863
864AS_IF([test "x$enable_man_pages" != "xno"], [
865 AS_IF([test "x$in_git_repo" = "xyes"], [
866 PPRINT_PROP_BOOL([build_man_pages_msg], 1)
867 ], [
868 AS_IF([test "x$have_asciidoc_xmlto" = "xyes"], [
869 PPRINT_PROP_BOOL([build_man_pages_msg], 1)
870 ], [
871 PPRINT_PROP_STRING([build_man_pages_msg],
872 [${PPRINT_COLOR_BLDGRN}yes (already built)],
873 $PPRINT_COLOR_SUBTITLE)
874 ])
875 ])
876], [
877 PPRINT_PROP_BOOL([build_man_pages_msg], 0)
878])
879
880m4_popdef([build_man_pages_msg])
881
4266f2ad
PP
882test "x$enable_api_doc" = "xyes" && value=1 || value=0
883PPRINT_PROP_BOOL([HTML API documentation], $value)
884test "x$enable_python_bindings_doc" = "xyes" && value=1 || value=0
885PPRINT_PROP_BOOL([Python bindings documentation], $value)
1a0399f9 886
4266f2ad
PP
887AS_ECHO
888PPRINT_SUBTITLE([Logging])
889PPRINT_PROP_STRING([Minimal log level], $BABELTRACE_MINIMAL_LOG_LEVEL)
890
d244c559
PP
891AS_ECHO
892PPRINT_SUBTITLE([Special build modes])
893PPRINT_PROP_BOOL([Debug mode], $BABELTRACE_DEBUG_MODE)
894PPRINT_PROP_BOOL([Developer mode], $BABELTRACE_DEV_MODE)
895
1a0399f9
MJ
896report_bindir="`eval eval echo $bindir`"
897report_libdir="`eval eval echo $libdir`"
4266f2ad 898report_sysconfdif="`eval eval echo $sysconfdir`"
4a2a7ed1 899report_pluginsdir="`eval eval eval echo $BABELTRACE_PLUGINS_DIR`"
7b783015 900report_pluginprovidersdir="`eval eval eval echo $BABELTRACE_PLUGIN_PROVIDERS_DIR`"
1a0399f9
MJ
901
902# Print the bindir and libdir this `make install' will install into.
903AS_ECHO
904PPRINT_SUBTITLE([Install directories])
905PPRINT_PROP_STRING([Binaries], [$report_bindir])
906PPRINT_PROP_STRING([Libraries], [$report_libdir])
4a2a7ed1 907PPRINT_PROP_STRING([Plugins], [$report_pluginsdir])
7b783015 908PPRINT_PROP_STRING([Plugin providers], [$report_pluginprovidersdir])
4266f2ad 909PPRINT_PROP_STRING([Configuration], [$report_sysconfdif])
This page took 0.110539 seconds and 4 git commands to generate.