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