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