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