1 dnl Process this file with autoconf to produce a configure script.
3 dnl Copyright (c) 2017 EfficiOS, Inc.
5 dnl Permission is hereby granted, free of charge, to any person obtaining a copy
6 dnl of this software and associated documentation files (the "Software"), to deal
7 dnl in the Software without restriction, including without limitation the rights
8 dnl to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 dnl copies of the Software, and to permit persons to whom the Software is
10 dnl furnished to do so, subject to the following conditions:
12 dnl The above copyright notice and this permission notice shall be included in
13 dnl all copies or substantial portions of the Software.
15 dnl THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 dnl IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 dnl FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 dnl AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 dnl LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 dnl OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24 ## Autoconf base setup ##
29 m4_define([bt_version_major], [2])
30 m4_define([bt_version_minor], [0])
31 m4_define([bt_version_patch], [0])
32 m4_define([bt_version_extra], [-pre5])
33 m4_define([bt_version], bt_version_major[.]bt_version_minor[.]bt_version_patch[]bt_version_extra)
35 AC_INIT([babeltrace], bt_version, [jeremie dot galarneau at efficios dot com], [], [https://efficios.com/babeltrace/])
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
39 m4_define([bt_lib_version_current], [0])
40 m4_define([bt_lib_version_revision], [0])
41 m4_define([bt_lib_version_age], [0])
42 m4_define([bt_lib_version], bt_lib_version_current[:]bt_lib_version_revision[:]bt_lib_version_age)
44 AC_SUBST([BABELTRACE_LIBRARY_VERSION], bt_lib_version)
46 AC_CONFIG_HEADERS([src/common/config.h])
47 AC_CONFIG_AUX_DIR([config])
48 AC_CONFIG_MACRO_DIR([m4])
50 AC_DEFINE([BT_VERSION_MAJOR], bt_version_major, [Babeltrace major version])
51 AC_DEFINE([BT_VERSION_MINOR], bt_version_minor, [Babeltrace minor version])
52 AC_DEFINE([BT_VERSION_PATCH], bt_version_patch, [Babeltrace patch version])
53 AC_DEFINE([BT_VERSION_EXTRA], ["]bt_version_extra["], [Babeltrace extra version])
60 ## Automake base setup ##
63 AM_INIT_AUTOMAKE([foreign dist-bzip2 no-dist-gzip tar-ustar nostdinc])
64 AM_MAINTAINER_MODE([enable])
66 # Enable silent rules if available (Introduced in AM 1.11)
67 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
71 ## OS specific defaults ##
75 DEFAULT_ENABLE_DEBUG_INFO=yes
80 DEFAULT_ENABLE_DEBUG_INFO=no
84 DEFAULT_ENABLE_DEBUG_INFO=no
85 LT_NO_UNDEFINED="-no-undefined"
90 DEFAULT_ENABLE_DEBUG_INFO=no
91 LT_NO_UNDEFINED="-no-undefined"
95 AM_CONDITIONAL([BABELTRACE_BUILD_WITH_MINGW], [test "x$MINGW32" = "xyes"])
96 AC_SUBST(LT_NO_UNDEFINED)
100 ## C compiler checks ##
103 AC_USE_SYSTEM_EXTENSIONS
106 # Choose the c compiler
109 # Make sure the c compiler supports C99
110 AC_PROG_CC_C99([], [AC_MSG_ERROR([The compiler does not support C99])])
112 # Make sure the c compiler supports __attributes__
114 AS_IF([test "x$ax_cv___attribute__" != "xyes"],
115 [AC_MSG_ERROR([The compiler does not support __attribute__ extensions])])
117 # Make sur we have pthread support
118 AX_PTHREAD([], [AC_MSG_ERROR([Could not configure pthread support])])
120 # Checks for typedefs, structures, and compiler characteristics.
135 AC_CHECK_TYPES([ptrdiff_t])
162 # Check if the linker supports no-as-needed
163 AX_APPEND_LINK_FLAGS([-Wl,--no-as-needed], [LD_NO_AS_NEEDED])
164 AC_SUBST([LD_NO_AS_NEEDED])
166 # Check if the linker supports whole-archive
167 AX_CHECK_LINK_FLAG([-Wl,--whole-archive,--no-whole-archive],
169 AC_SUBST([LD_WHOLE_ARCHIVE], [-Wl,--whole-archive,])
170 AC_SUBST([LD_NO_WHOLE_ARCHIVE], [,--no-whole-archive])
172 # Fallback to force_load for the macOS linker
173 AX_CHECK_LINK_FLAG([-Wl,-force_load],
175 AC_SUBST([LD_WHOLE_ARCHIVE], [-Wl,-force_load,])
176 AC_SUBST([LD_NO_WHOLE_ARCHIVE], [])
178 AC_MSG_WARN([Can't find a linker option to force the inclusion of the static plugin archive objects.])
184 # Initialize and configure libtool
189 ## Programs checks ##
196 # set $IN_GIT_REPO if we're in the Git repository; the `bootstrap` file
197 # is not distributed in tarballs
198 AS_IF([test -f "$srcdir/bootstrap"], [in_git_repo=yes], [in_git_repo=no])
199 AM_CONDITIONAL([IN_GIT_REPO], [test "x$in_git_repo" = "xyes"])
203 AX_PROG_BISON_VERSION([2.5], [have_bison=yes])
205 AS_IF([test "x$have_bison" != "xyes"], [
206 AS_IF([test "x$in_git_repo" = "xyes"], [
208 Bison >= 2.4 is required when building from the Git repository. You can
209 set the YACC variable to override automatic detection.
213 Missing Bison >= 2.4. Note that the parser files are already built in
214 this distribution tarball, so Bison is only needed if you intend to
215 modify their sources. You can set the YACC variable to override automatic
220 AM_CONDITIONAL([HAVE_BISON], [test "x$have_bison" = "xyes"])
224 AX_PROG_FLEX_VERSION([2.5.35], [have_flex=yes])
226 AS_IF([test "x$have_flex" != "xyes"], [
227 AS_IF([test "x$in_git_repo" = "xyes"], [
229 Flex >= 2.5.35 is required when building from the Git repository. You can
230 set the LEX variable to override automatic detection.
234 Missing Flex >= 2.5.35. Note that the lexer files are already built in
235 this distribution tarball, so Flex is only needed if you intend to
236 modify their sources. You can set the LEX variable to override automatic
241 AM_CONDITIONAL([HAVE_FLEX], [test "x$have_flex" = "xyes"])
248 # Check what libraries are required on this platform to link sockets programs.
251 # Check for glib >= 2.22 with gmodule support
252 AM_PATH_GLIB_2_0([2.22.0], [],
253 AC_MSG_ERROR([glib >= 2.22 is required - download it from ftp://ftp.gtk.org/pub/gtk]),
257 # Checks for library functions.
291 # AC_FUNC_MALLOC causes problems when cross-compiling.
296 AC_CHECK_LIB([c], [fmemopen],
297 [AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_FMEMOPEN], 1, [Has fmemopen support.])]
300 # Check for open_memstream
301 AC_CHECK_LIB([c], [open_memstream],
302 [AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_OPEN_MEMSTREAM], 1, [Has open_memstream support.])]
305 # Check for posix_fallocate
306 AC_CHECK_LIB([c], [posix_fallocate],
307 [AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_POSIX_FALLOCATE], 1, [Has posix_fallocate support.])]
311 PKG_CHECK_MODULES([POPT], [popt],
313 dnl PKG_CHECK_MODULES defines POPT_LIBS
316 AC_MSG_WARN([pkg-config was unable to find a valid .pc for libpopt. Set PKG_CONFIG_PATH to specify the pkgconfig configuration file location])
317 AC_MSG_WARN([Finding libpopt without pkg-config.])
320 [POPT_LIBS="-lpopt"],
322 AC_MSG_FAILURE([Cannot find libpopt. Either set PKG_CONFIG_PATH to the configuration file location or use LDFLAGS=-Ldir to specify the library location])
334 AC_ARG_VAR([PYTHON_INCLUDE], [Include flags for Python, bypassing python-config])
335 AC_ARG_VAR([PYTHON_LDFLAGS], [Linker flags for Python, bypassing python-config])
336 AC_ARG_VAR([PYTHON_CONFIG], [Path to python-config])
338 # BABELTRACE_PLUGINS_DIR: Plugins directory
339 AC_ARG_VAR([BABELTRACE_PLUGINS_DIR], [built-in plugins install directory [LIBDIR/babeltrace2/plugins]])
340 AS_IF([test "x$BABELTRACE_PLUGINS_DIR" = x], [BABELTRACE_PLUGINS_DIR='${libdir}/babeltrace2/plugins'])
342 # BABELTRACE_PLUGIN_PROVIDERS_DIR: Plugin providers directory
343 AC_ARG_VAR([BABELTRACE_PLUGIN_PROVIDERS_DIR], [built-in plugin providers install directory [LIBDIR/babeltrace2/plugin-providers]])
344 AS_IF([test "x$BABELTRACE_PLUGIN_PROVIDERS_DIR" = x], [BABELTRACE_PLUGIN_PROVIDERS_DIR='${libdir}/babeltrace2/plugin-providers'])
346 # BABELTRACE_MINIMAL_LOG_LEVEL:
347 AC_ARG_VAR([BABELTRACE_MINIMAL_LOG_LEVEL], [Minimal log level for Babeltrace program, library, and plugins (TRACE, DEBUG (default), or INFO)])
348 AS_IF([test "x$BABELTRACE_MINIMAL_LOG_LEVEL" = x], [BABELTRACE_MINIMAL_LOG_LEVEL="DEBUG"])
349 AS_IF([test "$BABELTRACE_MINIMAL_LOG_LEVEL" != "TRACE" && \
350 test "$BABELTRACE_MINIMAL_LOG_LEVEL" != "DEBUG" && \
351 test "$BABELTRACE_MINIMAL_LOG_LEVEL" != "INFO"],
352 [AC_MSG_ERROR([Invalid BABELTRACE_MINIMAL_LOG_LEVEL value ($BABELTRACE_MINIMAL_LOG_LEVEL): use TRACE, DEBUG, or INFO.])]
354 AC_DEFINE_UNQUOTED([BT_MINIMAL_LOG_LEVEL], [BT_LOG_$BABELTRACE_MINIMAL_LOG_LEVEL], [Minimal log level])
356 # BABELTRACE_DEV_MODE:
357 AC_ARG_VAR([BABELTRACE_DEV_MODE], [Set to 1 to enable the Babeltrace developer mode (enables run-time checks for plugin developers)])
358 AS_IF([test "x$BABELTRACE_DEV_MODE" = x1], [
359 AC_DEFINE([BT_DEV_MODE], 1, [Babeltrace developer mode])
360 ], [BABELTRACE_DEV_MODE=0])
362 # BABELTRACE_DEBUG_MODE:
363 AC_ARG_VAR([BABELTRACE_DEBUG_MODE], [Set to 1 to enable the Babeltrace debug mode (enables internal assertions for Babeltrace maintainers)])
364 AS_IF([test "x$BABELTRACE_DEBUG_MODE" = x1], [
365 AC_DEFINE([BT_DEBUG_MODE], 1, [Babeltrace debug mode])
366 ], [BABELTRACE_DEBUG_MODE=0])
370 ## Optionnal features selection ##
374 # Disabled by default
375 AC_ARG_ENABLE([python-bindings],
376 [AC_HELP_STRING([--enable-python-bindings], [build the Python bindings])],
377 [], dnl AC_ARG_ENABLE will fill enable_python_bindings with the user choice
378 [enable_python_bindings=no]
381 # Python bindings documentation
382 # Disabled by default
383 AC_ARG_ENABLE([python-bindings-doc],
384 [AC_HELP_STRING([--enable-python-bindings-doc], [build the Python bindings documentation])],
385 [], dnl AC_ARG_ENABLE will fill enable_python_bindings_doc with the user choice
386 [enable_python_bindings_doc=no]
390 # Disabled by default
391 AC_ARG_ENABLE([python-plugins],
392 [AC_HELP_STRING([--enable-python-plugins], [enable the Python plugins support for the library and converter])],
393 [], dnl AC_ARG_ENABLE will fill enable_python_plugins with the user choice
394 [enable_python_plugins=no]
398 # Enabled by default, except on some platforms
399 AC_ARG_ENABLE([debug-info],
400 [AC_HELP_STRING([--disable-debug-info], [disable the debug info support (default on macOS, Solaris and Windows)])],
401 [], dnl AC_ARG_ENABLE will fill enable_debug_info with the user choice
402 [enable_debug_info="$DEFAULT_ENABLE_DEBUG_INFO"]
406 # Disabled by default
407 AC_ARG_ENABLE([api-doc],
408 [AC_HELP_STRING([--enable-api-doc], [build the HTML API documentation])],
409 [enable_api_doc=$enableval],
414 # Disabled by default
415 AC_ARG_ENABLE([built-in-plugins],
416 [AC_HELP_STRING([--enable-built-in-plugins], [Statically-link in-tree plug-ins into the babeltrace2 executable])],
417 [], dnl AC_ARG_ENABLE will fill enable_built_in_plugins with the user choice
418 [enable_built_in_plugins=no]
421 # Built-in python plugin support
422 # Disabled by default
423 AC_ARG_ENABLE([built-in-python-plugin-support],
424 [AC_HELP_STRING([--enable-built-in-python-plugin-support], [Statically-link Python plugin support into the babeltrace library])],
425 [], dnl AC_ARG_ENABLE will fill enable_built_in_python_plugin_support with the user choice
426 [enable_built_in_python_plugin_support=no]
431 AC_ARG_ENABLE([man-pages],
432 [AS_HELP_STRING([--disable-man-pages], [Do not build and install man pages (already built in a distributed tarball])],
433 [], dnl AC_ARG_ENABLE will fill enable_built_in_plugins with the user choice
434 [enable_man_pages=yes]
438 # Set automake variables for optionnal feature conditionnals in Makefile.am
439 AM_CONDITIONAL([ENABLE_PYTHON_BINDINGS], [test "x$enable_python_bindings" = xyes])
440 AM_CONDITIONAL([ENABLE_PYTHON_BINDINGS_DOC], [test "x$enable_python_bindings_doc" = xyes])
441 AM_CONDITIONAL([ENABLE_PYTHON_PLUGINS], [test "x$enable_python_plugins" = xyes])
442 AM_CONDITIONAL([ENABLE_DEBUG_INFO], [test "x$enable_debug_info" = xyes])
443 AM_CONDITIONAL([ENABLE_API_DOC], [test "x$enable_api_doc" = xyes])
444 AM_CONDITIONAL([ENABLE_BUILT_IN_PLUGINS], [test "x$enable_built_in_plugins" = xyes])
445 AM_CONDITIONAL([ENABLE_BUILT_IN_PYTHON_PLUGIN_SUPPORT], [test "x$enable_built_in_python_plugin_support" = xyes])
446 AM_CONDITIONAL([ENABLE_MAN_PAGES], [test "x$enable_man_pages" = xyes])
447 AM_CONDITIONAL([ENABLE_PYTHON_COMMON_DEPS], [test "x$enable_python_bindings" = xyes || test "x$enable_python_plugins" = xyes])
449 # Set defines for optionnal features conditionnals in the source code
451 ## jgalar: still used?
452 AS_IF([test "x$enable_python_plugins" = xyes],
453 [AC_DEFINE([PYTHON_PLUGINS], [1], [Python plugin support.])]
456 AS_IF([test "x$enable_debug_info" = xyes],
457 [AC_DEFINE([ENABLE_DEBUG_INFO], [1], [Define to 1 if you enable the 'debug info' feature])]
460 AS_IF([test "x$enable_built_in_plugins" = xyes],
461 [AC_DEFINE([BT_BUILT_IN_PLUGINS], [1], [Define to 1 to register plug-in attributes in static executable sections])]
464 AS_IF([test "x$enable_built_in_python_plugin_support" = xyes],
465 [AC_DEFINE([BT_BUILT_IN_PYTHON_PLUGIN_SUPPORT], [1], [Define to 1 to register plug-in attributes in static executable sections])]
468 AS_IF([test "x$enable_debug_info" = xyes],
469 [ENABLE_DEBUG_INFO_VAL=1],
470 [ENABLE_DEBUG_INFO_VAL=0]
473 AC_SUBST([ENABLE_DEBUG_INFO_VAL])
476 # Check for conflicting optional features user choices
478 AS_IF([test "x$enable_python_bindings" = xno],
480 AS_IF([test "x$enable_python_bindings_doc" = xyes], [AC_MSG_ERROR([--enable-python-bindings-doc was specified without --enable-python-bindings])])
484 AS_IF([test "x$enable_built_in_plugins" = xyes],
486 # Built-in plug-ins are only available when the --disable-shared --enable-static options are used.
487 AS_IF([test "x$enable_static" != xyes], [AC_MSG_ERROR(--enable-static must be used to bundle plug-ins in the babeltrace2 executable)])
488 AS_IF([test "x$enable_shared" = xyes], [AC_MSG_ERROR(--disable-shared must be used to bundle plug-ins in the babeltrace2 executable)])
492 AS_IF([test "x$enable_built_in_python_plugin_support" = xyes],
494 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])])
495 # Built-in plug-ins are only available when the --disable-shared --enable-static options are used.
496 AS_IF([test "x$enable_static" != xyes], [AC_MSG_ERROR(--enable-static must be used to bundle Python plugin support in the babeltrace2 executable)])
497 AS_IF([test "x$enable_shared" = xyes], [AC_MSG_ERROR(--disable-shared must be used to bundle Python plugin support in the babeltrace2 executable)])
502 # Check for optionnal features dependencies
504 AS_IF([test "x$enable_python_bindings" = xyes],
505 [AX_PKG_SWIG(2.0.0, [], [AC_MSG_ERROR([SWIG 2.0.0 or newer is required to build the python bindings])])]
508 AM_PATH_PYTHON([3.0], [
509 AM_PATH_PYTHON_MODULES([PYTHON])
511 # pythondir is the path where extra modules are to be installed
512 pythondir=$PYTHON_PREFIX/$PYTHON_MODULES_PATH
514 # pyexecdir is the path that contains shared objects used by the extra modules
515 pyexecdir=$PYTHON_EXEC_PREFIX/$PYTHON_MODULES_PATH
517 AS_IF([test -z "$PYTHON_CONFIG"], [
518 AC_PATH_PROGS([PYTHON_CONFIG],
519 [python$PYTHON_VERSION-config python-config],
524 AS_IF([test -n "$PYTHON_CONFIG"], [
525 AS_IF([test -z "$PYTHON_INCLUDE"], [
526 AC_MSG_CHECKING([Python include flags])
527 PYTHON_INCLUDE=`$PYTHON_CONFIG --includes`
528 AC_MSG_RESULT([$PYTHON_INCLUDE])
531 AS_IF([test -z "$PYTHON_LDFLAGS"], [
532 AC_MSG_CHECKING([Python library flags])
533 PYTHON_LDFLAGS=`$PYTHON_CONFIG --ldflags`
534 AC_MSG_RESULT([$PYTHON_LDFLAGS])
539 AS_IF([test "$PYTHON" != :], [have_python=yes], [have_python=no])
540 AS_IF([test -n "$PYTHON_CONFIG"], [have_python_dev=yes], [have_python_dev=no])
542 AM_CONDITIONAL([HAVE_PYTHON], [test "x$have_python" = xyes])
543 AM_CONDITIONAL([HAVE_PYTHON_DEV], [test "x$have_python_dev" = xyes])
545 AS_IF([test "x$enable_python_bindings" = xyes || test "x$enable_python_plugins" = xyes], [
546 AS_IF([test "x$have_python_dev" = xno], [
547 AC_MSG_ERROR([Cannot find a suitable python-config. You can override the python-config path with the PYTHON_CONFIG environment variable.])
551 AS_IF([test "x$enable_python_bindings_doc" = xyes],
553 AM_CHECK_PYTHON_SPHINX([PYTHON])
554 AS_IF([test "x$PYTHON_SPHINX_EXISTS" = xno],
555 [AC_MSG_ERROR([The Sphinx package for Python 3 is required to build the Python bindings documentation])]
560 AS_IF([test "x$enable_debug_info" = xyes],
562 # Check if libelf and libdw are present
563 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.)])
564 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.)])
565 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.)])
566 ELFUTILS_LIBS="-lelf -ldw"
569 AC_SUBST([ELFUTILS_LIBS])
571 AS_IF([test "x$enable_api_doc" = "xyes"],
573 DX_DOXYGEN_FEATURE(ON)
583 DX_INIT_DOXYGEN([Babeltrace], [$(srcdir)/Doxyfile], [output])
584 AS_IF([test -z "$DX_DOXYGEN"],
585 [AC_MSG_ERROR([You need doxygen to enable the API documentation])]
590 have_asciidoc_xmlto=no
591 warn_prebuilt_man_pages=no
593 AC_PATH_PROG([ASCIIDOC], [asciidoc], [no])
594 AC_PATH_PROG([XMLTO], [xmlto], [no])
596 AS_IF([test "x$enable_man_pages" = "xyes"], [
597 AS_IF([test "x$ASCIIDOC" = "xno" || test "x$XMLTO" = "xno"], [
598 AS_IF([test "x$in_git_repo" = "xyes"], [
599 # this is an error because we're in the Git repo, which
600 # means the man pages are not already generated for us,
601 # thus asciixmlto are required because we were asked
602 # to build the man pages
604 You need asciidoc and xmlto to build the Babeltrace man pages. Use
605 --disable-man-pages to disable building the man pages, in which case
606 they will not be installed.
609 # only warn here: since we're in the tarball, the man
610 # pages should already be generated at this point, thus
611 # asciidoc/xmlto are not strictly required
612 warn_prebuilt_man_pages=yes
615 have_asciidoc_xmlto=yes
619 # export AsciiDoc and xmlto existence
620 AM_CONDITIONAL([HAVE_ASCIIDOC_XMLTO], [test "x$have_asciidoc_xmlto" = "xyes"])
622 # a wonderful hack that seems necessary because $libdir is
623 # literally `${exec_prefix}/lib`, and $exec_prefix is set to `NONE`
624 # by autoconf when it's not specified by the user
625 AS_IF([test "x$exec_prefix" = xNONE], [
626 AS_IF([test "x$prefix" = xNONE], [
627 PREFIX="$ac_default_prefix"
640 # Set global CFLAGS in AM_CFLAGS
641 AM_CFLAGS="-Wall -Wformat -Werror=implicit-function-declaration $PTHREAD_CFLAGS $GLIB_CFLAGS"
644 # Set global CPPFLAGS in AM_CPPFLAGS
645 AM_CPPFLAGS="-I\$(top_srcdir)/include -I\$(top_builddir)/src -I\$(top_srcdir)/src -include common/config.h"
646 AC_SUBST(AM_CPPFLAGS)
648 # Add glib to global link libs
649 LIBS="$LIBS $GLIB_LIBS"
651 # Check that the current size_t matches the size that glib thinks it should
652 # be. This catches problems on multi-arch where people try to do a 32-bit
653 # build while pointing at 64-bit glib headers. This is a common error because
654 # glib.h is not platform specific but it includes glibconfig.h which is and
655 # is usually installed in a non-standard path.
657 # Older versions of the pkg-config macros disallows PKG_* in the autoconf
658 # output. Specifically allow pkg_config_libdir to be able to print the
660 m4_pattern_allow([PKG_CONFIG_LIBDIR])
662 save_CFLAGS=${CFLAGS}
663 CFLAGS="${CFLAGS} ${AM_CFLAGS}"
669 G_STATIC_ASSERT(sizeof(size_t) == GLIB_SIZEOF_SIZE_T);
673 sizeof(size_t) doesn't match GLIB_SIZEOF_SIZE_T. You probably need to set
674 PKG_CONFIG_LIBDIR to point to the right pkg-config files for your build
678 CFLAGS=${save_CFLAGS}
680 # Abuse autoconf's AC_ARG_PROGRAM output variable 'program_transform_name'
681 # to rename babeltrace2.bin to babeltrace2 at install time.
682 program_transform_name="s&babeltrace2\.bin&babeltrace2&;$program_transform_name"
683 AC_SUBST(program_transform_name)
688 doc/bindings/Makefile
689 doc/bindings/python/Makefile
690 doc/contributing-images/Makefile
692 doc/man/asciidoc-attrs.conf
697 src/babeltrace2-ctf-writer.pc
699 src/bindings/Makefile
700 src/bindings/python/bt2/bt2/version.py
701 src/bindings/python/bt2/Makefile
702 src/bindings/python/bt2/setup.py
703 src/bindings/python/Makefile
708 src/ctf-writer/Makefile
709 src/fd-cache/Makefile
710 src/lib/graph/Makefile
711 src/lib/graph/message/Makefile
713 src/lib/plugin/Makefile
714 src/lib/prio-heap/Makefile
715 src/lib/trace-ir/Makefile
718 src/plugins/ctf/common/bfcr/Makefile
719 src/plugins/ctf/common/Makefile
720 src/plugins/ctf/common/metadata/Makefile
721 src/plugins/ctf/common/msg-iter/Makefile
722 src/plugins/ctf/fs-sink/Makefile
723 src/plugins/ctf/fs-src/Makefile
724 src/plugins/ctf/lttng-live/Makefile
725 src/plugins/ctf/Makefile
726 src/plugins/lttng-utils/debug-info/Makefile
727 src/plugins/lttng-utils/Makefile
729 src/plugins/text/dmesg/Makefile
730 src/plugins/text/Makefile
731 src/plugins/text/pretty/Makefile
732 src/plugins/text/details/Makefile
733 src/plugins/utils/counter/Makefile
734 src/plugins/utils/dummy/Makefile
735 src/plugins/utils/Makefile
736 src/plugins/utils/muxer/Makefile
737 src/plugins/utils/trimmer/Makefile
738 src/py-common/Makefile
739 src/python-plugin-provider/Makefile
740 tests/bitfield/Makefile
741 tests/ctf-writer/Makefile
742 tests/argpar/Makefile
744 tests/lib/test-plugin-plugins/Makefile
746 tests/plugins/Makefile
747 tests/plugins/src.ctf.fs/Makefile
748 tests/plugins/src.ctf.fs/succeed/Makefile
749 tests/plugins/sink.ctf.fs/Makefile
750 tests/plugins/sink.ctf.fs/succeed/Makefile
751 tests/plugins/flt.lttng-utils.debug-info/Makefile
752 tests/plugins/flt.utils.trimmer/Makefile
754 tests/utils/tap/Makefile
760 # Mini-report on what will be built.
768 AS_ECHO("${PPRINT_COLOR_BLDBLU}Babeltrace $PACKAGE_VERSION$PPRINT_COLOR_RST")
771 PPRINT_SUBTITLE([System])
773 # Target architecture we're building for.
774 target_arch=$host_cpu
777 if test $f = "-m32"; then
779 elif test $f = "-m64"; then
785 PPRINT_PROP_STRING([Target architecture], $target_arch)
788 PPRINT_SUBTITLE([Python 3 language support])
789 test "x$have_python" = "xyes" && value=1 || value=0
790 PPRINT_PROP_BOOL([Have Python interpreter], $value)
791 test "x$have_python_dev" = "xyes" && value=1 || value=0
792 PPRINT_PROP_BOOL([Have Python development libraries], $value)
793 test "x$enable_python_bindings" = "xyes" && value=1 || value=0
794 PPRINT_PROP_BOOL([Python bindings], $value)
795 test "x$enable_python_plugins" = "xyes" && value=1 || value=0
796 PPRINT_PROP_BOOL([Python plugin support], $value)
797 AS_IF([test "x$have_python" = "xyes"], [
798 PPRINT_PROP_STRING([Python interpreter path], [$PYTHON])
800 AS_IF([test "x$have_python_dev" = "xyes"], [
801 PPRINT_PROP_STRING([python-config path], [$PYTHON_CONFIG])
802 PPRINT_PROP_STRING([Python include paths], [$PYTHON_INCLUDE])
803 PPRINT_PROP_STRING([Python linker flags], [$PYTHON_LDFLAGS])
805 AS_IF([test "x$enable_python_bindings" = "xyes"], [
806 PPRINT_PROP_STRING([SWIG executable], [$SWIG])
807 PPRINT_PROP_STRING([SWIG library], [$SWIG_LIB])
811 PPRINT_SUBTITLE([Plugins])
812 PPRINT_PROP_BOOL(['ctf' plugin], 1)
813 test "x$enable_debug_info" = "xyes" && value=1 || value=0
814 PPRINT_PROP_BOOL(['lttng-utils' plugin], $value)
815 PPRINT_PROP_BOOL(['text' plugin], 1)
816 PPRINT_PROP_BOOL(['utils' plugin], 1)
819 PPRINT_SUBTITLE([Built-in features])
820 test "x$enable_built_in_plugins" = "xyes" && value=1 || value=0
821 PPRINT_PROP_BOOL([Built-in plugins], $value)
822 test "x$enable_built_in_python_plugin_support" = "xyes" && value=1 || value=0
823 PPRINT_PROP_BOOL([Built-in Python plugin support], $value)
826 PPRINT_SUBTITLE([Documentation])
828 # man pages build enabled/disabled
829 m4_pushdef([build_man_pages_msg], [Build and install man pages])
831 AS_IF([test "x$enable_man_pages" != "xno"], [
832 AS_IF([test "x$in_git_repo" = "xyes"], [
833 PPRINT_PROP_BOOL([build_man_pages_msg], 1)
835 AS_IF([test "x$have_asciidoc_xmlto" = "xyes"], [
836 PPRINT_PROP_BOOL([build_man_pages_msg], 1)
838 PPRINT_PROP_STRING([build_man_pages_msg],
839 [${PPRINT_COLOR_BLDGRN}yes (already built)],
840 $PPRINT_COLOR_SUBTITLE)
844 PPRINT_PROP_BOOL([build_man_pages_msg], 0)
847 m4_popdef([build_man_pages_msg])
849 test "x$enable_api_doc" = "xyes" && value=1 || value=0
850 PPRINT_PROP_BOOL([HTML API documentation], $value)
851 test "x$enable_python_bindings_doc" = "xyes" && value=1 || value=0
852 PPRINT_PROP_BOOL([Python bindings documentation], $value)
855 PPRINT_SUBTITLE([Logging])
856 PPRINT_PROP_STRING([Minimal log level], $BABELTRACE_MINIMAL_LOG_LEVEL)
859 PPRINT_SUBTITLE([Special build modes])
860 PPRINT_PROP_BOOL([Debug mode], $BABELTRACE_DEBUG_MODE)
861 PPRINT_PROP_BOOL([Developer mode], $BABELTRACE_DEV_MODE)
863 report_bindir="`eval eval echo $bindir`"
864 report_libdir="`eval eval echo $libdir`"
865 report_sysconfdif="`eval eval echo $sysconfdir`"
866 report_pluginsdir="`eval eval eval echo $BABELTRACE_PLUGINS_DIR`"
867 report_pluginprovidersdir="`eval eval eval echo $BABELTRACE_PLUGIN_PROVIDERS_DIR`"
869 # Print the bindir and libdir this `make install' will install into.
871 PPRINT_SUBTITLE([Install directories])
872 PPRINT_PROP_STRING([Binaries], [$report_bindir])
873 PPRINT_PROP_STRING([Libraries], [$report_libdir])
874 PPRINT_PROP_STRING([Plugins], [$report_pluginsdir])
875 PPRINT_PROP_STRING([Plugin providers], [$report_pluginprovidersdir])
876 PPRINT_PROP_STRING([Configuration], [$report_sysconfdif])