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