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