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