Automatically generate discarded packets/events notifications
[babeltrace.git] / configure.ac
... / ...
CommitLineData
1AC_PREREQ([2.50])
2m4_define([bt_version_major], [2])
3m4_define([bt_version_minor], [0])
4m4_define([bt_version_patch], [0])
5m4_define([bt_version_extra], [-pre1])
6m4_define([bt_version], bt_version_major[.]bt_version_minor[.]bt_version_patch[]bt_version_extra)
7AC_INIT([babeltrace],bt_version,[jeremie dot galarneau at efficios dot com])
8
9# Following the numbering scheme proposed by libtool for the library version
10# http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
11AC_SUBST([BABELTRACE_LIBRARY_VERSION], bt_version_major[:]bt_version_minor[:]bt_version_patch)
12
13AC_CONFIG_HEADERS([config.h])
14AC_CONFIG_AUX_DIR([config])
15AC_CONFIG_MACRO_DIR([m4])
16
17AC_DEFINE([BT_VERSION_MAJOR], bt_version_major, [Babeltrace library major version])
18AC_DEFINE([BT_VERSION_MINOR], bt_version_minor, [Babeltrace library minor version])
19AC_DEFINE([BT_VERSION_PATCH], bt_version_patch, [Babeltrace library patch version])
20AC_DEFINE([BT_VERSION_EXTRA], ["]bt_version_extra["], [Babeltrace library extra version])
21
22AC_CANONICAL_TARGET
23AC_CANONICAL_HOST
24
25AM_INIT_AUTOMAKE([foreign dist-bzip2 no-dist-gzip tar-ustar])
26AM_MAINTAINER_MODE([enable])
27
28# Enable silent rules if available (Introduced in AM 1.11)
29m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
30
31AC_REQUIRE_AUX_FILE([tap-driver.sh])
32
33# Checks for C compiler
34AC_USE_SYSTEM_EXTENSIONS
35AC_SYS_LARGEFILE
36AC_PROG_CC
37AC_PROG_CC_STDC
38
39# Checks for programs.
40AC_PROG_MAKE_SET
41LT_INIT(win32-dll)
42AC_PROG_YACC
43AC_PROG_LEX
44AC_PROG_MKDIR_P
45AC_PROG_LN_S
46
47AX_C___ATTRIBUTE__
48AS_IF([test "x$ax_cv___attribute__" = "xyes"],
49 [:],
50 [AC_MSG_ERROR([The compiler does not support __attribute__ extensions])])
51
52AX_PTHREAD(,[AC_MSG_ERROR([Could not configure pthreads support])])
53LIBS="$PTHREAD_LIBS $LIBS"
54CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
55CC="$PTHREAD_CC"
56
57# Check linker option
58AX_APPEND_LINK_FLAGS([-Wl,--no-as-needed], [LD_NO_AS_NEEDED])
59AC_SUBST([LD_NO_AS_NEEDED])
60
61AC_HEADER_STDBOOL
62AC_CHECK_HEADERS([ \
63 fcntl.h \
64 float.h \
65 ftw.h \
66 libintl.h \
67 limits.h \
68 malloc.h \
69 netdb.h \
70 netinet/in.h \
71 stddef.h \
72 sys/socket.h \
73])
74
75if test ! -f "$srcdir/plugins/ctf/common/metadata/parser.h"; then
76 if test x"$(basename "$YACC")" != "xbison -y"; then
77 AC_MSG_ERROR([[bison not found and is required when building from git.
78 Please install bison]])
79 fi
80 AC_PATH_PROG([BISON],[bison])
81 AX_PROG_BISON_VERSION([2.4], [],[
82 AC_MSG_ERROR([[Bison >= 2.4 is required when building from git]])
83 ])
84fi
85
86if test ! -f "$srcdir/plugins/ctf/common/metadata/lexer.c"; then
87 if test x"$LEX" != "xflex"; then
88 AC_MSG_ERROR([[flex not found and is required when building from git.
89 Please install flex]])
90 fi
91 AC_PATH_PROG([FLEX],[flex])
92 AX_PROG_FLEX_VERSION([2.5.35], [],[
93 AC_MSG_ERROR([[Flex >= 2.5.35 is required when building from git]])
94 ])
95fi
96
97
98AM_PATH_GLIB_2_0(2.22.0, ,AC_MSG_ERROR([glib is required in order to compile BabelTrace - download it from ftp://ftp.gtk.org/pub/gtk]) , gmodule-no-export)
99
100# Check what libraries are required on this platform to link sockets programs.
101AX_LIB_SOCKET_NSL
102
103# Checks for typedefs, structures, and compiler characteristics.
104AC_C_INLINE
105AC_TYPE_PID_T
106AC_TYPE_SIZE_T
107AC_TYPE_INT16_T
108AC_TYPE_INT32_T
109AC_TYPE_INT64_T
110AC_TYPE_INT8_T
111AC_TYPE_OFF_T
112AC_TYPE_SSIZE_T
113AC_TYPE_UINT16_T
114AC_TYPE_UINT32_T
115AC_TYPE_UINT64_T
116AC_TYPE_UINT8_T
117
118# Checks for library functions.
119AC_FUNC_ALLOCA
120AC_FUNC_FORK
121AC_FUNC_MKTIME
122AC_FUNC_MMAP
123AC_FUNC_STRERROR_R
124AC_CHECK_FUNCS([ \
125 atexit \
126 dup2 \
127 ftruncate \
128 gethostbyname \
129 gethostname \
130 gettimeofday \
131 localtime_r \
132 memchr \
133 memset \
134 mkdir \
135 mkdtemp \
136 munmap \
137 rmdir \
138 setenv \
139 socket \
140 strchr \
141 strdup \
142 strerror \
143 strndup \
144 strnlen \
145 strrchr \
146 strtoul \
147 strtoull \
148 tzset \
149 uname \
150])
151
152# AC_FUNC_MALLOC causes problems when cross-compiling.
153#AC_FUNC_MALLOC
154#AC_FUNC_REALLOC
155
156MINGW32=no
157DEFAULT_ENABLE_DEBUG_INFO=yes
158LT_NO_UNDEFINED=""
159AS_CASE([$host_os],
160 [solaris*|darwin*],
161 [
162 DEFAULT_ENABLE_DEBUG_INFO=no
163 ],
164 [cygwin*],
165 [
166 DEFAULT_ENABLE_DEBUG_INFO=no
167 LT_NO_UNDEFINED="-no-undefined"
168 ],
169 [mingw*],
170 [
171 MINGW32=yes
172 DEFAULT_ENABLE_DEBUG_INFO=no
173 LT_NO_UNDEFINED="-no-undefined"
174 ]
175)
176
177AM_CONDITIONAL([BABELTRACE_BUILD_WITH_MINGW], [test "x$MINGW32" = "xyes"])
178AC_SUBST(LT_NO_UNDEFINED)
179
180# Check for uuid in system libs
181AC_CHECK_FUNCS([uuid_generate],
182[
183 AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_LIBUUID], 1, [Has libuuid support.])
184 link_with_libuuid=no
185],
186[
187 # First, check the pkg-config module is available, otherwise explicitly check
188 # for libuuid, or uuid support in the C-library.
189 PKG_CHECK_MODULES([UUID], [uuid],
190 [
191 LIBS="${UUID_LIBS} ${LIBS}"
192 CFLAGS="${CFLAGS} ${UUID_CFLAGS}"
193 AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_LIBUUID], 1, [Has libuuid support.])
194 link_with_libuuid=yes
195 ],
196 [
197 # Check for libuuid
198 AC_CHECK_LIB([uuid], [uuid_generate],
199 [
200 AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_LIBUUID], 1, [Has libuuid support.])
201 link_with_libuuid=yes
202 ],
203 [
204 # libuuid not found, check for uuid_create in libc.
205 AC_CHECK_LIB([c], [uuid_create],
206 [
207 AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_LIBC_UUID], 1, [Has libc uuid support.])
208 link_with_libc_uuid=yes
209 ],
210 [
211 # for MinGW32 we have our own internal implementation of uuid using Windows functions.
212 if test "x$MINGW32" = xno; then
213 AC_MSG_ERROR([Cannot find libuuid uuid_generate nor libc uuid_create. Use [LDFLAGS]=-Ldir to specify their location.])
214 fi
215 ])
216 ])
217 ])
218])
219
220AM_CONDITIONAL([BABELTRACE_BUILD_WITH_LIBUUID], [test "x$link_with_libuuid" = "xyes"])
221AM_CONDITIONAL([BABELTRACE_BUILD_WITH_LIBC_UUID], [test "x$link_with_libc_uuid" = "xyes"])
222
223# Check for fmemopen
224AC_CHECK_LIB([c], [fmemopen],
225[
226 AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_FMEMOPEN], 1, [Has fmemopen support.])
227]
228)
229
230# Check for open_memstream
231AC_CHECK_LIB([c], [open_memstream],
232[
233 AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_OPEN_MEMSTREAM], 1, [Has open_memstream support.])
234]
235)
236
237# Check for posix_fallocate
238AC_CHECK_LIB([c], [posix_fallocate],
239[
240 AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_POSIX_FALLOCATE], 1, [Has posix_fallocate support.])
241]
242)
243
244AC_CHECK_LIB([popt], [poptGetContext], [],
245 [AC_MSG_ERROR([Cannot find popt.])]
246)
247
248# Plugins
249AC_ARG_VAR([PLUGINSDIR], [built-in plugins install directory [LIBDIR/babeltrace/plugins]])
250AS_IF([test "x$PLUGINSDIR" = x], [PLUGINSDIR='$(libdir)/babeltrace/plugins'])
251
252# For Python
253# SWIG version needed or newer:
254swig_version=2.0.0
255
256AC_ARG_ENABLE([python-bindings],
257 [AC_HELP_STRING([--enable-python-bindings],
258 [generate Python bindings])],
259 [enable_python_bindings=$enableval], [enable_python_bindings=no])
260
261AM_CONDITIONAL([USE_PYTHON], [test "x${enable_python_bindings:-yes}" = xyes])
262
263AC_ARG_ENABLE(
264 [python-plugins],
265 [AC_HELP_STRING(
266 [--enable-python-plugins],
267 [add support for the Babeltrace library and converter to load Python plugins])
268 ],
269 [enable_python_plugins=$enableval],
270 [enable_python_plugins=no]
271)
272
273if test "x${enable_python_bindings:-yes}" = xyes; then
274 AX_PKG_SWIG($swig_version, [], [ AC_MSG_ERROR([SWIG $swig_version or newer is needed]) ])
275else
276 AC_MSG_NOTICE([You may configure with --enable-python-bindings ]dnl
277[if you want Python bindings.])
278fi
279
280if test "x$enable_python_bindings" != xno || test "x$enable_python_plugins" != xno; then
281 AM_PATH_PYTHON([3.0], , [AC_MSG_ERROR(Python 3 is not available or is not the default Python interpreter on your system. See the README file to learn how to override your distribution's default Python interpreter.)])
282
283 AM_PATH_PYTHON_MODULES([PYTHON])
284 # pythondir is the path where extra modules are to be installed
285 pythondir=$PYTHON_PREFIX/$PYTHON_MODULES_PATH
286 # pyexecdir is the path that contains shared objects used by the extra modules
287 pyexecdir=$PYTHON_EXEC_PREFIX/$PYTHON_MODULES_PATH
288 AC_ARG_VAR([PYTHON_INCLUDE], [Include flags for Python, bypassing python-config])
289 AC_ARG_VAR([PYTHON_LIBS], [Library flags for Python, bypassing python-config])
290 AC_ARG_VAR([PYTHON_CONFIG], [Path to python-config])
291 AS_IF([test -z "$PYTHON_INCLUDE"], [
292 AS_IF([test -z "$PYTHON_CONFIG"], [
293 AC_PATH_PROGS([PYTHON_CONFIG],
294 [python$PYTHON_VERSION-config python-config],
295 [no],
296 [`dirname $PYTHON`])
297 AS_IF([test "$PYTHON_CONFIG" = no], [AC_MSG_ERROR([cannot find python-config for $PYTHON. Do you have python-dev installed?])])
298 ])
299 AC_MSG_CHECKING([Python include flags])
300 PYTHON_INCLUDE=`$PYTHON_CONFIG --includes`
301 AC_MSG_RESULT([$PYTHON_INCLUDE])
302 ])
303 AS_IF([test -z "$PYTHON_LIBS"], [
304 AS_IF([test -z "$PYTHON_CONFIG"], [
305 AC_PATH_PROGS([PYTHON_CONFIG],
306 [python$PYTHON_VERSION-config python-config],
307 [no],
308 [`dirname $PYTHON`])
309 AS_IF([test "$PYTHON_CONFIG" = no], [AC_MSG_ERROR([cannot find python-config for $PYTHON. Do you have python-dev installed?])])
310 ])
311 AC_MSG_CHECKING([Python library flags])
312 PYTHON_LIBS=`$PYTHON_CONFIG --libs`
313 AC_MSG_RESULT([$PYTHON_LIBS])
314 ])
315fi
316
317AS_IF([test "x$BUILT_IN_PLUGINS" = ""])
318
319AM_CONDITIONAL([WITH_PYTHON_PLUGINS], [test "x$enable_python_plugins" != xno])
320AS_IF(
321 [test "x$enable_python_plugins" != xno],
322 AC_DEFINE_UNQUOTED([WITH_PYTHON_PLUGINS], [1], [Python plugin support.])
323)
324
325AC_ARG_ENABLE([python-bindings-doc],
326 [AC_HELP_STRING([--enable-python-bindings-doc],
327 [generate Python bindings documentation])],
328 [enable_python_bindings_doc=$enableval], [enable_python_bindings_doc=no])
329
330AM_CONDITIONAL([BUILD_PYTHON_BINDINGS_DOC], [test "x${enable_python_bindings_doc:-yes}" = xyes])
331
332AC_ARG_ENABLE([python-bindings-tests],
333 [AC_HELP_STRING([--enable-python-bindings-tests],
334 [test Python bindings])],
335 [enable_python_bindings_tests=$enableval], [enable_python_bindings_tests=no])
336
337AM_CONDITIONAL([ENABLE_PYTHON_BINDINGS_TESTS], [test "x${enable_python_bindings_tests:-yes}" = xyes])
338
339if test "x${enable_python_bindings:-no}" = xno; then
340 if test "x${enable_python_bindings_doc:-yes}" = xyes; then
341 AC_MSG_ERROR([--enable-python-bindings-doc was specified without --enable-python-bindings])
342 fi
343
344 if test "x${enable_python_bindings_tests:-yes}" = xyes; then
345 AC_MSG_ERROR([--enable-python-bindings-tests was specified without --enable-python-bindings])
346 fi
347fi
348
349if test "x${enable_python_bindings_doc:-yes}" = xyes; then
350 AM_CHECK_PYTHON_SPHINX([PYTHON])
351 AS_IF([test "x$PYTHON_SPHINX_EXISTS" = xno],
352 AC_MSG_ERROR([The Sphinx package for Python 3 is required to build Python bindings documentation])
353 )
354fi
355
356if test "x${enable_python_bindings_tests:-yes}" = xyes; then
357 AM_CHECK_PYTHON_TAPPY([PYTHON])
358 AS_IF([test "x$PYTHON_TAPPY_EXISTS" = xno],
359 AC_MSG_ERROR([You need the tappy Python project to test the Python bindings (see <https://github.com/python-tap/tappy>)])
360 )
361fi
362
363# Set default enable state for debug info.
364# The _enable_debug_info variable is prepended with an underscore to
365# avoid clashing with the one generated by AC_ARG_ENABLE.
366AS_IF([test "x$DEFAULT_ENABLE_DEBUG_INFO" = xyes], [_enable_debug_info=yes], [_enable_debug_info=no])
367
368# Optional debug info feature
369# Do _not_ indent the help string below (appears in the configure --help
370# output).
371AC_ARG_ENABLE([debug-info],
372[AC_HELP_STRING([--enable-debug-info], [enable the debug info feature (default on Linux)])]
373[AC_HELP_STRING([--disable-debug-info], [disable the debug info feature (default on OS X and Solaris)])],
374 [AS_IF([test "x$enableval" = xyes], [_enable_debug_info=yes], [_enable_debug_info=no])], [])
375
376AM_CONDITIONAL([ENABLE_DEBUG_INFO], [test "x$_enable_debug_info" = xyes])
377
378AS_IF([test "x$_enable_debug_info" = xyes], [
379 # Check if libelf and libdw are present
380 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.)])
381 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.)])
382 BT_LIB_ELFUTILS([0], [154], [:], [AC_MSG_ERROR(elfutils >= 0.154 is required to use the debug info feature. You can disable this feature using --disable-debug-info.)])
383 AC_DEFINE([ENABLE_DEBUG_INFO], [1], [Define to 1 if you enable the 'debug info' feature])
384], [])
385
386AC_ARG_VAR([BUILT_IN_PLUGINS], [Statically-link in-tree plug-ins into the babeltrace binary])
387AS_IF([test "x$BUILT_IN_PLUGINS" != x], [
388# Built-in plug-ins are only available when the --disable-shared --enable-static options are used.
389 AS_IF([test "x$enable_static" != "xyes"], [AC_MSG_ERROR(--enable-static must be used to bundle plug-ins in the babeltrace executable)])
390 AS_IF([test "x$enable_shared" = "xyes"], [AC_MSG_ERROR(--disable-shared must be used to bundle plug-ins in the babeltrace executable)])
391 built_in_plugins=yes
392 AC_DEFINE([BT_BUILT_IN_PLUGINS], [1], [Define to 1 to register plug-in attributes in static executable sections])
393])
394AM_CONDITIONAL([BUILT_IN_PLUGINS], [test "x$built_in_plugins" = "xyes"])
395
396AC_ARG_VAR([BUILT_IN_PYTHON_PLUGIN_SUPPORT], [Statically-link Python plugin support into the babeltrace library])
397AS_IF([test "x$BUILT_IN_PYTHON_PLUGIN_SUPPORT" != x], [
398# Built-in plug-ins are only available when the --disable-shared --enable-static options are used.
399 AS_IF([test "x$enable_static" != "xyes"], [AC_MSG_ERROR(--enable-static must be used to bundle Python plugin support in the babeltrace executable)])
400 AS_IF([test "x$enable_shared" = "xyes"], [AC_MSG_ERROR(--disable-shared must be used to bundle Python plugin support in the babeltrace executable)])
401 AS_IF([test "x$enable_python_plugins" = "xno"], [
402 AC_MSG_ERROR([You can't use BUILT_IN_PYTHON_PLUGIN_SUPPORT=1 without --enable-python-plugins.])
403 ])
404 built_in_python_plugin_support=yes
405 AC_DEFINE([BT_BUILT_IN_PYTHON_PLUGIN_SUPPORT], [1], [Define to 1 to register plug-in attributes in static executable sections])
406])
407AM_CONDITIONAL([BUILT_IN_PYTHON_PLUGIN_SUPPORT], [test "x$built_in_python_plugin_support" = "xyes"])
408
409PKG_CHECK_MODULES(GMODULE, [gmodule-no-export-2.0 >= 2.0.0])
410
411# Logging
412AC_ARG_VAR([BABELTRACE_MINIMAL_LOG_LEVEL], [Minimal log level for Babeltrace program, library, and plugins (VERBOSE, DEBUG, INFO, WARN, ERROR (default), FATAL, or NONE)])
413AS_IF([test "x$BABELTRACE_MINIMAL_LOG_LEVEL" = "x"], [BABELTRACE_MINIMAL_LOG_LEVEL=VERBOSE])
414AS_IF([test "$BABELTRACE_MINIMAL_LOG_LEVEL" != "VERBOSE" && test "$BABELTRACE_MINIMAL_LOG_LEVEL" != "DEBUG" && test "$BABELTRACE_MINIMAL_LOG_LEVEL" != "INFO" && test "$BABELTRACE_MINIMAL_LOG_LEVEL" != "WARN" && test "$BABELTRACE_MINIMAL_LOG_LEVEL" != "ERROR" && test "$BABELTRACE_MINIMAL_LOG_LEVEL" != "FATAL" && test "$BABELTRACE_MINIMAL_LOG_LEVEL" != "NONE"], [
415 AC_MSG_ERROR([Invalid BABELTRACE_MINIMAL_LOG_LEVEL value ($BABELTRACE_MINIMAL_LOG_LEVEL): use VERBOSE, DEBUG, INFO, WARN, ERROR, FATAL, or NONE.])
416])
417AC_DEFINE_UNQUOTED([BT_LOG_LEVEL], [BT_LOG_$BABELTRACE_MINIMAL_LOG_LEVEL], [Minimal log level])
418
419LIBS="$LIBS $GMODULE_LIBS"
420PACKAGE_CFLAGS="$GMODULE_CFLAGS -Wall -Wformat"
421AC_SUBST(PACKAGE_CFLAGS)
422
423DEFAULT_INCLUDES="-I\$(top_srcdir) -I\$(top_builddir) -I\$(top_builddir)/include -include config.h"
424AC_SUBST(DEFAULT_INCLUDES)
425
426babeltraceincludedir="${includedir}/babeltrace"
427AC_SUBST(babeltraceincludedir)
428
429babeltracectfwriterincludedir="${includedir}/babeltrace/ctf-writer"
430AC_SUBST(babeltracectfwriterincludedir)
431
432babeltracectfincludedir="${includedir}/babeltrace/ctf"
433AC_SUBST(babeltracectfincludedir)
434
435babeltracectfirincludedir="${includedir}/babeltrace/ctf-ir"
436AC_SUBST(babeltracectfirincludedir)
437
438babeltracepluginincludedir="${includedir}/babeltrace/plugin"
439AC_SUBST(babeltracepluginincludedir)
440
441babeltracegraphincludedir="${includedir}/babeltrace/graph"
442AC_SUBST(babeltracegraphincludedir)
443
444program_transform_name="s&babeltrace\.bin&babeltrace&;$program_transform_name"
445AC_SUBST(program_transform_name)
446
447# check for Doxygen
448AC_ARG_ENABLE(
449 [api-doc],
450 [AC_HELP_STRING(
451 [--enable-api-doc],
452 [generate and install HTML API documentation]
453 )],
454 [enable_api_doc=$enableval],
455 [enable_api_doc=no]
456)
457AM_CONDITIONAL([ENABLE_API_DOC], [test "x$enable_api_doc" = "xyes"])
458
459AS_IF([test "x$enable_api_doc" = "xyes"], [
460 DX_DOXYGEN_FEATURE(ON)
461 DX_DOT_FEATURE(OFF)
462 DX_HTML_FEATURE(ON)
463 DX_CHM_FEATURE(OFF)
464 DX_CHI_FEATURE(OFF)
465 DX_MAN_FEATURE(OFF)
466 DX_RTF_FEATURE(OFF)
467 DX_XML_FEATURE(OFF)
468 DX_PDF_FEATURE(OFF)
469 DX_PS_FEATURE(OFF)
470 DX_INIT_DOXYGEN([Babeltrace], [$(srcdir)/Doxyfile], [output])
471])
472
473 #TODO: removed, work in progress
474 #bindings/python/Makefile
475 #bindings/python/babeltrace/Makefile
476 #bindings/python/bt2/Makefile
477 #bindings/python/bt2/__init__.py
478AC_CONFIG_FILES([
479 Makefile
480 common/Makefile
481 compat/Makefile
482 cli/Makefile
483 doc/Makefile
484 doc/api/Makefile
485 doc/api/Doxyfile
486 doc/bindings/Makefile
487 doc/bindings/python/Makefile
488 doc/images/Makefile
489 lib/Makefile
490 lib/prio_heap/Makefile
491 lib/plugin/Makefile
492 lib/graph/Makefile
493 lib/graph/notification/Makefile
494 lib/ctf-ir/Makefile
495 lib/ctf-writer/Makefile
496 include/Makefile
497 logging/Makefile
498 bindings/Makefile
499 tests/Makefile
500 tests/cli/Makefile
501 tests/cli/intersection/Makefile
502 tests/lib/Makefile
503 tests/lib/writer/Makefile
504 tests/lib/test-plugin-plugins/Makefile
505 tests/utils/Makefile
506 tests/utils/tap/Makefile
507 tests/bindings/Makefile
508 tests/bindings/python/Makefile
509 tests/bindings/python/bt2/Makefile
510 tests/plugins/Makefile
511 extras/Makefile
512 extras/valgrind/Makefile
513 plugins/Makefile
514 plugins/ctf/Makefile
515 plugins/ctf/common/Makefile
516 plugins/ctf/common/btr/Makefile
517 plugins/ctf/common/metadata/Makefile
518 plugins/ctf/common/notif-iter/Makefile
519 plugins/ctf/fs-src/Makefile
520 plugins/ctf/fs-sink/Makefile
521 plugins/ctf/lttng-live/Makefile
522 plugins/text/Makefile
523 plugins/text/pretty/Makefile
524 plugins/utils/Makefile
525 plugins/utils/dummy/Makefile
526 plugins/utils/trimmer/Makefile
527 plugins/utils/muxer/Makefile
528 python-plugin-provider/Makefile
529 plugins/libctfcopytrace/Makefile
530 plugins/lttng-utils/Makefile
531 babeltrace.pc
532 babeltrace-ctf.pc
533])
534
535#AC_CONFIG_FILES([converter/babeltrace], [chmod +x converter/babeltrace])
536AC_CONFIG_FILES([tests/lib/test_ctf_writer_complete], [chmod +x tests/lib/test_ctf_writer_complete])
537AC_CONFIG_FILES([tests/lib/test_plugin_complete], [chmod +x tests/lib/test_plugin_complete])
538AC_CONFIG_FILES([tests/lib/test_dwarf_complete], [chmod +x tests/lib/test_dwarf_complete])
539AC_CONFIG_FILES([tests/lib/test_bin_info_complete], [chmod +x tests/lib/test_bin_info_complete])
540
541AC_CONFIG_FILES([tests/plugins/test-utils-muxer-complete], [chmod +x tests/plugins/test-utils-muxer-complete])
542
543AC_CONFIG_FILES([tests/cli/test_trace_read], [chmod +x tests/cli/test_trace_read])
544AC_CONFIG_FILES([tests/cli/test_trace_copy], [chmod +x tests/cli/test_trace_copy])
545AC_CONFIG_FILES([tests/cli/test_debug_info], [chmod +x tests/cli/test_debug_info])
546AC_CONFIG_FILES([tests/cli/test_trimmer], [chmod +x tests/cli/test_trimmer])
547AC_CONFIG_FILES([tests/cli/intersection/test_intersection], [chmod +x tests/cli/intersection/test_intersection])
548AC_CONFIG_FILES([tests/cli/test_convert_args], [chmod +x tests/cli/test_convert_args])
549AC_CONFIG_FILES([tests/cli/intersection/bt_python_helper.py])
550AC_CONFIG_FILES([tests/lib/writer/bt_python_helper.py])
551AC_CONFIG_FILES([tests/lib/writer/test_ctf_writer_empty_packet.py])
552AC_CONFIG_FILES([tests/lib/writer/test_ctf_writer_no_packet_context.py])
553AC_CONFIG_FILES([tests/cli/test_packet_seq_num], [chmod +x tests/cli/test_packet_seq_num])
554
555AS_IF([test "x$enable_python" = "xyes"], [
556 AC_CONFIG_FILES(
557 [tests/bindings/python/bt2/testall.sh],
558 [chmod +x tests/bindings/python/bt2/testall.sh]
559 )
560])
561
562AC_OUTPUT
563
564#
565# Mini-report on what will be built.
566#
567
568PPRINT_INIT
569PPRINT_SET_INDENT(1)
570PPRINT_SET_TS(38)
571
572AS_ECHO
573AS_ECHO("${PPRINT_COLOR_BLDBLU}Babeltrace $PACKAGE_VERSION$PPRINT_COLOR_RST")
574AS_ECHO
575
576PPRINT_SUBTITLE([System])
577
578# Target architecture we're building for.
579target_arch=$host_cpu
580[
581for f in $CFLAGS; do
582 if test $f = "-m32"; then
583 target_arch="32-bit"
584 elif test $f = "-m64"; then
585 target_arch="64-bit"
586 fi
587done
588]
589
590PPRINT_PROP_STRING([Target architecture], $target_arch)
591
592AS_ECHO
593PPRINT_SUBTITLE([Python 3 language support])
594test "x$enable_python_bindings" = "xyes" && value=1 || value=0
595PPRINT_PROP_BOOL([Python bindings], $value)
596test "x$enable_python_plugins" = "xyes" && value=1 || value=0
597PPRINT_PROP_BOOL([Python plugin support], $value)
598AS_IF([test "x$enable_python_bindings" = "xyes" || test "x$enable_python_plugins" = "xyes"], [
599 PPRINT_PROP_STRING([Python include paths], [$PYTHON_INCLUDE])
600 PPRINT_PROP_STRING([Python libraries], [$PYTHON_LIBS])
601])
602
603AS_ECHO
604PPRINT_SUBTITLE([Plugins])
605PPRINT_PROP_BOOL(['ctf' plugin], 1)
606test "x$_enable_debug_info" = "xyes" && value=1 || value=0
607PPRINT_PROP_BOOL(['lttng-utils' plugin], $value)
608PPRINT_PROP_BOOL(['text' plugin], 1)
609PPRINT_PROP_BOOL(['utils' plugin], 1)
610
611AS_ECHO
612PPRINT_SUBTITLE([Built-in features])
613test "x$built_in_plugins" = "xyes" && value=1 || value=0
614PPRINT_PROP_BOOL([Built-in plugins], $value)
615test "x$built_in_python_plugin_support" = "xyes" && value=1 || value=0
616PPRINT_PROP_BOOL([Built-in Python plugin support], $value)
617
618AS_ECHO
619PPRINT_SUBTITLE([Documentation])
620test "x$enable_api_doc" = "xyes" && value=1 || value=0
621PPRINT_PROP_BOOL([HTML API documentation], $value)
622test "x$enable_python_bindings_doc" = "xyes" && value=1 || value=0
623PPRINT_PROP_BOOL([Python bindings documentation], $value)
624
625AS_ECHO
626PPRINT_SUBTITLE([Logging])
627PPRINT_PROP_STRING([Minimal log level], $BABELTRACE_MINIMAL_LOG_LEVEL)
628
629AS_ECHO
630PPRINT_SUBTITLE([Testing])
631test "x$enable_python_bindings_tests" = "xyes" && value=1 || value=0
632PPRINT_PROP_BOOL([Python bindings tests], $value)
633
634report_bindir="`eval eval echo $bindir`"
635report_libdir="`eval eval echo $libdir`"
636report_sysconfdif="`eval eval echo $sysconfdir`"
637
638# Print the bindir and libdir this `make install' will install into.
639AS_ECHO
640PPRINT_SUBTITLE([Install directories])
641PPRINT_PROP_STRING([Binaries], [$report_bindir])
642PPRINT_PROP_STRING([Libraries], [$report_libdir])
643PPRINT_PROP_STRING([Plugins], [$report_libdir/babeltrace/plugins])
644PPRINT_PROP_STRING([Configuration], [$report_sysconfdif])
This page took 0.025225 seconds and 4 git commands to generate.