1 # SPDX-License-Identifier: LGPL-2.1-only
4 m4_define([V_MAJOR], [2])
5 m4_define([V_MINOR], [13])
6 m4_define([V_PATCH], [0])
7 m4_define([V_EXTRA], [pre])
8 m4_define([V_NAME], [[Codename TBD]])
9 m4_define([V_DESC], [[Description TBD]])
11 m4_define([V_STRING], [V_MAJOR.V_MINOR.V_PATCH])
12 m4_ifdef([V_EXTRA], [m4_append([V_STRING], [-V_EXTRA])])
15 AC_INIT([lttng-ust], V_STRING, [mathieu dot desnoyers at efficios dot com], [], [https://lttng.org])
17 dnl Substitute minor/major/patchlevel version numbers
18 AC_SUBST([MAJOR_VERSION], [V_MAJOR])
19 AC_SUBST([MINOR_VERSION], [V_MINOR])
20 AC_SUBST([PATCHLEVEL_VERSION], [V_PATCH])
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 # This is the library version of liblttng-ust.
25 m4_define([UST_LIB_V_MAJOR], [1])
26 m4_define([UST_LIB_V_MINOR], [0])
27 m4_define([UST_LIB_V_PATCH], [0])
29 AC_SUBST([LTTNG_UST_LIBRARY_VERSION], [UST_LIB_V_MAJOR:UST_LIB_V_MINOR:UST_LIB_V_PATCH])
30 AC_DEFINE([CONFIG_LTTNG_UST_LIBRARY_VERSION_MAJOR], [UST_LIB_V_MAJOR], [Major SONAME number of the ust library])
31 # note: remember to update tracepoint.h dlopen() to match this version
32 # number. TODO: eventually automate by exporting the major number.
34 # This is the library version of liblttng-ust-ctl, used internally by
35 # liblttng-ust, lttng-sessiond, and lttng-consumerd.
36 AC_SUBST([LTTNG_UST_CTL_LIBRARY_VERSION], [4:0:0])
38 AC_CONFIG_HEADERS([include/config.h include/lttng/ust-config.h])
39 AC_CONFIG_AUX_DIR([config])
40 AC_CONFIG_MACRO_DIR([m4])
41 AC_CONFIG_SRCDIR([include/lttng/tracepoint.h])
46 AM_INIT_AUTOMAKE([1.12 foreign dist-bzip2 no-dist-gzip tar-ustar nostdinc -Wall -Wno-portability -Werror])
47 AM_MAINTAINER_MODE([enable])
49 # Enable silent rules by default
50 AM_SILENT_RULES([yes])
52 # Checks for C compiler
53 AC_USE_SYSTEM_EXTENSIONS
56 # AC_PROG_CC_STDC was merged in AC_PROG_CC in autoconf 2.70
57 m4_version_prereq([2.70], [], [AC_PROG_CC_STDC])
59 AX_CXX_COMPILE_STDCXX([11])
61 AM_CONDITIONAL([CXX_WORKS], [test "x$rw_cv_prog_cxx_works" = "xyes"])
63 # Check if the compiler support weak symbols
66 AS_IF([test "x${ax_cv_sys_weak_alias}" = "xno"], [
67 AC_MSG_ERROR([Your platform doesn't support weak symbols.])
70 # Checks for programs.
77 AC_CHECK_PROG([HAVE_CMAKE], [cmake], ["yes"])
78 AM_CONDITIONAL([HAVE_CMAKE], [test "x$HAVE_CMAKE" = "xyes"])
80 # libtool link_all_deplibs fixup. See http://bugs.lttng.org/issues/321.
81 AC_ARG_ENABLE([libtool-linkdep-fixup], [
82 AS_HELP_STRING([--disable-libtool-linkdep-fixup], [disable the libtool fixup for linking all dependent libraries (link_all_deplibs)])
84 libtool_fixup=$enableval
89 AS_IF([test "x$libtool_fixup" = "xyes"], [
90 libtool_m4="$srcdir/m4/libtool.m4"
91 libtool_flag_pattern=".*link_all_deplibs\s*,\s*\$1\s*)"
92 AC_MSG_CHECKING([for occurence(s) of link_all_deplibs = no in $libtool_m4])
93 libtool_flag_pattern_count=$(grep -c "$libtool_flag_pattern\s*=\s*no" $libtool_m4)
95 AS_IF([test $libtool_flag_pattern_count -ne 0], [
96 AC_MSG_RESULT([$libtool_flag_pattern_count])
97 AC_MSG_WARN([the detected libtool will not link all dependencies, forcing link_all_deplibs = unknown])
98 $SED -i "s/\($libtool_flag_pattern\)\s*=\s*no/\1=unknown/g" $libtool_m4
100 AC_MSG_RESULT([none])
103 LT_INIT([disable-static])
105 AC_MSG_CHECKING([whether shared libraries are enabled])
106 AS_IF([test "x$enable_shared" = "xyes"], [
110 AC_MSG_ERROR([LTTng-UST requires shared libraries to be enabled])
113 # Checks for typedefs, structures, and compiler characteristics.
129 AC_CHECK_TYPES([ptrdiff_t])
132 AS_IF([test "x$ax_cv___attribute__" = "xyes"],
134 [AC_MSG_ERROR([The compiler does not support __attribute__ extensions])])
136 AX_PTHREAD(,[AC_MSG_ERROR([Could not configure pthreads support])])
138 # Checks for library functions.
168 # Check for pthread_setname_np and its signature
169 LTTNG_PTHREAD_SETNAME_NP
171 # AC_FUNC_MALLOC causes problems when cross-compiling.
174 # Checks for header files.
188 # Set architecture specific options
198 [s390], [NO_UNALIGNED_ACCESS=1],
199 [s390x], [NO_UNALIGNED_ACCESS=1],
201 NO_UNALIGNED_ACCESS=1
204 [aarch64*], [NO_UNALIGNED_ACCESS=1],
205 [mips*], [NO_UNALIGNED_ACCESS=1],
206 [tile*], [NO_UNALIGNED_ACCESS=1],
209 NO_UNALIGNED_ACCESS=1
212 # Set os specific options
214 [freebsd*], [NO_NUMA=1]
217 # Configuration options, which will be installed in the config.h
218 AH_TEMPLATE([LTTNG_UST_HAVE_EFFICIENT_UNALIGNED_ACCESS], [Use efficient unaligned access.])
219 AH_TEMPLATE([LTTNG_UST_HAVE_SDT_INTEGRATION], [SystemTap integration via sdt.h])
220 AH_TEMPLATE([LTTNG_UST_HAVE_PERF_EVENT], [Perf event integration via perf_event.h])
222 # Checks for libraries.
223 AC_CHECK_LIB([dl], [dlopen], [
227 #libdl not found, check for dlopen in libc.
228 AC_CHECK_LIB([c], [dlopen], [
232 AC_MSG_ERROR([Cannot find dlopen in libdl nor libc. Use [LDFLAGS]=-Ldir to specify their location.])
237 # Check if libdl has dlmopen support.
238 AH_TEMPLATE([HAVE_DLMOPEN], ["Define to 1 if dlmopen is available."])
239 AC_CHECK_LIB([$libdl_name], [dlmopen],
240 [AC_DEFINE([HAVE_DLMOPEN], [1])]
244 AC_CHECK_HEADER([dlfcn.h])
245 AS_IF([test "x${ac_cv_header_dlfcn_h}" = "xyes"], [
246 AC_CHECK_DECLS([RTLD_DI_LINKMAP], [], [], [
250 ac_cv_have_decl_RTLD_DI_LINKMAP="no"
253 AM_CONDITIONAL([HAVE_DLINFO], [test "x${ac_cv_have_decl_RTLD_DI_LINKMAP}" = "xyes"])
255 # Require URCU >= 0.12 for DEFINE_URCU_TLS_INIT
256 PKG_CHECK_MODULES([URCU], [liburcu >= 0.12])
259 AS_IF([test "x$NO_NUMA" = "x1"],[
260 AS_IF([test "x$enable_numa" = "x" ], [enable_numa=no])
263 AC_ARG_ENABLE([numa], [
264 AS_HELP_STRING([--disable-numa], [disable NUMA support])
266 enable_numa=$enableval
271 AS_IF([test "x$enable_numa" = "xyes"], [
272 # numa - check that numa lib is available
273 AC_CHECK_LIB([numa], [numa_available], [],
274 [AC_MSG_ERROR([libnuma is not available. Please either install it (e.g. libnuma-dev) or use [LDFLAGS]=-Ldir to specify the right location, or use --disable-numa configure argument to disable NUMA support.])])
277 AM_CONDITIONAL([HAVE_LIBNUMA], [test "x$have_libnuma" = "xyes"])
279 # optional linux/perf_event.h
280 AC_CHECK_HEADERS([linux/perf_event.h], [have_perf_event=yes], [])
282 # Perf event counters are supported on all architectures supported by
283 # perf, using the read system call as fallback.
284 AM_CONDITIONAL([HAVE_PERF_EVENT], [test "x$have_perf_event" = "xyes"])
286 AS_IF([test "x$have_perf_event" = "xyes"], [
287 AC_DEFINE([LTTNG_UST_HAVE_PERF_EVENT], [1])
290 AS_IF([test "x$NO_UNALIGNED_ACCESS" = "x"], [
291 AC_DEFINE([LTTNG_UST_HAVE_EFFICIENT_UNALIGNED_ACCESS], [1])
294 # Check for JNI header files if requested
295 AC_ARG_ENABLE([jni-interface], [
296 AS_HELP_STRING([--enable-jni-interface], [build JNI interface between C and Java. Needs Java include files [default=no]])
298 jni_interface=$enableval
303 AM_CONDITIONAL([BUILD_JNI_INTERFACE], [test "x$jni_interface" = "xyes"])
306 AC_ARG_ENABLE([java-agent-jul], [
307 AS_HELP_STRING([--enable-java-agent-jul], [build the LTTng UST Java agent with JUL support [default=no]])
309 java_agent_jul=$enableval
314 AC_ARG_ENABLE([java-agent-log4j], [
315 AS_HELP_STRING([--enable-java-agent-log4j], [build the LTTng UST Java agent with Log4j support [default=no]])
317 java_agent_log4j=$enableval
322 AC_ARG_ENABLE([java-agent-all], [
323 AS_HELP_STRING([--enable-java-agent-all], [build the LTTng UST Java agent with all supported backends [default=no]])
325 java_agent_jul=$enableval
326 java_agent_log4j=$enableval
329 AM_CONDITIONAL([BUILD_JAVA_AGENT], [test "x$java_agent_jul" = "xyes" || test "x$java_agent_log4j" = "xyes"])
330 AM_CONDITIONAL([BUILD_JAVA_AGENT_WITH_JUL], [test "x$java_agent_jul" = "xyes"])
331 AM_CONDITIONAL([BUILD_JAVA_AGENT_WITH_LOG4J], [test "x$java_agent_log4j" = "xyes"])
333 AS_IF([test "x$jni_interface" = "xyes" || test "x$java_agent_jul" = "xyes" || test "x$java_agent_log4j" = "xyes"], [
338 AC_ARG_VAR([CLASSPATH], [Java class path])
341 for JNI_INCLUDE_DIR in $JNI_INCLUDE_DIRS
343 JNI_CPPFLAGS="$JNI_CPPFLAGS -I$JNI_INCLUDE_DIR"
346 saved_CPPFLAGS="$CPPFLAGS"
347 CPPFLAGS="$CPPFLAGS $JNI_CPPFLAGS"
349 CPPFLAGS="$saved_CPPFLAGS"
352 AM_CONDITIONAL([HAVE_JAVAH], [test "x$JAVAH" != "x"])
354 AS_IF([test "x$java_agent_log4j" = "xyes"], [
356 AX_CHECK_CLASS([org.apache.log4j.Logger])
357 AS_IF([test "x$ac_cv_class_org_apache_log4j_Logger" = "xno"], [
358 AC_MSG_ERROR([The UST Java agent support for log4j was requested but the Log4j classes were not found. Please specify the location of the Log4j jar via the Java CLASSPATH e.g: export CLASSPATH="/path/to/log4j.jar"])
362 # Option to build the python agent
363 AC_ARG_ENABLE([python-agent], [
364 AS_HELP_STRING([--enable-python-agent], [build the LTTng UST Python agent [default=no]])
366 python_agent=$enableval
368 AM_CONDITIONAL([BUILD_PYTHON_AGENT], [test "x$python_agent" = "xyes"])
369 AS_IF([test "x$python_agent" = "xyes"], [
370 AM_PATH_PYTHON([2.7])
375 AS_HELP_STRING([--with-sdt], [provide SystemTap integration via sdt.h [default=no]])
382 AS_IF([test "x$with_sdt" = "xyes"], [
383 AC_MSG_CHECKING([STAP_PROBEV()])
384 AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
385 #define SDT_USE_VARIADIC
389 STAP_PROBEV(provider,name,1,2,3,4,5,6,7,8,9,10);
393 AC_DEFINE([LTTNG_UST_HAVE_SDT_INTEGRATION], [1])
396 AC_MSG_ERROR([The sdt.h integration was requested but the STAP_PROBEV define cannot be used. Make sure it is installed, and up to date, or use CPPFLAGS=-I/path/ to specify a non-standard path to sys/sdt.h])
400 AC_ARG_WITH([lttng-system-rundir], [
401 AS_HELP_STRING([--with-lttng-system-rundir], [Location of the system directory where LTTng-UST expects the system-wide lttng-sessiond runtime files. The default is "/var/run/lttng".]),
403 lttng_system_rundir="$withval"
405 lttng_system_rundir="/var/run/lttng"
407 AC_DEFINE_UNQUOTED([LTTNG_SYSTEM_RUNDIR], ["$lttng_system_rundir"],
408 [LTTng system runtime directory])
410 AC_CHECK_PROG([BUILD_GEN_TP_EXAMPLES], [python], ["yes"])
411 AM_CONDITIONAL([BUILD_GEN_TP_EXAMPLES], [test "x$BUILD_GEN_TP_EXAMPLES" = "xyes"])
413 # Enable building examples
417 [--disable-examples],
418 [Do not build and install examples]
420 [enable_examples=$enableval],
421 [enable_examples=yes]
424 AM_CONDITIONAL([ENABLE_EXAMPLES], [test "x$enable_examples" != "xno"])
426 # Set $IN_GIT_REPO if we're in the Git repository; the `bootstrap` file
427 # is not distributed in tarballs.
428 AS_IF([test -f "$srcdir/bootstrap"], [in_git_repo=yes], [in_git_repo=no])
429 AM_CONDITIONAL([IN_GIT_REPO], [test "x$in_git_repo" = "xyes"])
431 # Enable building man pages (user's intention).
435 [--disable-man-pages],
436 [Do not build and install man pages (already built in a distributed tarball)]
438 [man_pages_opt=$enableval],
442 # Check for asciidoc and xmlto if we enabled building the man pages.
443 have_asciidoc_xmlto=no
444 warn_prebuilt_man_pages=no
446 AS_IF([test "x$man_pages_opt" = "xyes"], [
447 AC_PATH_PROG([ASCIIDOC], [asciidoc], [no])
448 AC_PATH_PROG([XMLTO], [xmlto], [no])
450 AS_IF([test "x$ASCIIDOC" = "xno" || test "x$XMLTO" = "xno"], [
451 AS_IF([test "x$in_git_repo" = "xyes"], [
452 # This is an error because we're in the Git repo, which
453 # means the man pages are not already generated for us,
454 # thus asciidoc/xmlto are required because we were asked
455 # to build the man pages.
457 Both asciidoc and xmlto are needed to build the LTTng-UST man pages. Use
458 --disable-man-pages to disable building the man pages, in which case
459 they will not be installed.
462 # Only warn here: since we're in the tarball, the man
463 # pages should already be generated at this point, thus
464 # asciidoc/xmlto are not strictly required.
465 warn_prebuilt_man_pages=yes
468 have_asciidoc_xmlto=yes
472 # Export man page build condition: build the man pages if the user
473 # asked for it, and if the tools are available.
474 AM_CONDITIONAL([MAN_PAGES_OPT], [test "x$man_pages_opt" != "xno"])
475 AM_CONDITIONAL([HAVE_ASCIIDOC_XMLTO], [test "x$have_asciidoc_xmlto" = "xyes"])
478 AC_DEFUN([_AC_DEFINE_AND_SUBST], [
479 AC_DEFINE_UNQUOTED([CONFIG_$1], [$2], [$1])
484 _AC_DEFINE_AND_SUBST([LTTNG_UST_DEFAULT_CONSTRUCTOR_TIMEOUT_MS], [3000])
486 AM_CFLAGS="-Wall $URCU_CFLAGS $PTHREAD_CFLAGS"
489 AM_CXXFLAGS="$AM_CFLAGS"
490 AC_SUBST(AM_CXXFLAGS)
492 # The order in which the include folders are searched is important.
493 # The top_builddir should always be searched first in the event that a build
494 # time generated file is included.
495 AM_CPPFLAGS="-I\$(top_builddir)/include -I\$(top_srcdir)/include -include config.h"
496 AC_SUBST(AM_CPPFLAGS)
498 AC_SUBST(JNI_CPPFLAGS)
503 doc/examples/Makefile
506 include/lttng/ust-version.h
510 libringbuffer/Makefile
511 liblttng-ust-comm/Makefile
512 liblttng-ust/Makefile
513 liblttng-ust-ctl/Makefile
514 liblttng-ust-fork/Makefile
515 liblttng-ust-dl/Makefile
516 liblttng-ust-fd/Makefile
517 liblttng-ust-java/Makefile
518 liblttng-ust-java-agent/Makefile
519 liblttng-ust-java-agent/java/Makefile
520 liblttng-ust-java-agent/java/lttng-ust-agent-all/Makefile
521 liblttng-ust-java-agent/java/lttng-ust-agent-common/Makefile
522 liblttng-ust-java-agent/java/lttng-ust-agent-jul/Makefile
523 liblttng-ust-java-agent/java/lttng-ust-agent-log4j/Makefile
524 liblttng-ust-java-agent/jni/Makefile
525 liblttng-ust-java-agent/jni/common/Makefile
526 liblttng-ust-java-agent/jni/jul/Makefile
527 liblttng-ust-java-agent/jni/log4j/Makefile
528 liblttng-ust-libc-wrapper/Makefile
529 liblttng-ust-cyg-profile/Makefile
530 liblttng-ust-python-agent/Makefile
531 python-lttngust/Makefile
532 python-lttngust/setup.py
533 python-lttngust/lttngust/__init__.py
536 tests/compile/Makefile
537 tests/compile/ctf-types/Makefile
538 tests/compile/hello.cxx/Makefile
539 tests/compile/hello/Makefile
540 tests/compile/hello-many/Makefile
541 tests/compile/same_line_tracepoint/Makefile
542 tests/compile/test-app-ctx/Makefile
543 tests/benchmark/Makefile
544 tests/unit/gcc-weak-hidden/Makefile
545 tests/unit/libmsgpack/Makefile
547 tests/unit/libringbuffer/Makefile
548 tests/unit/pthread_name/Makefile
549 tests/unit/snprintf/Makefile
550 tests/unit/ust-elf/Makefile
556 # Create link for python agent for the VPATH guru.
558 python-lttngust/lttngust/agent.py:python-lttngust/lttngust/agent.py
559 python-lttngust/lttngust/cmd.py:python-lttngust/lttngust/cmd.py
560 python-lttngust/lttngust/compat.py:python-lttngust/lttngust/compat.py
561 python-lttngust/lttngust/debug.py:python-lttngust/lttngust/debug.py
562 python-lttngust/lttngust/loghandler.py:python-lttngust/lttngust/loghandler.py
565 AC_CONFIG_FILES([tests/unit/ust-elf/test_ust_elf],[chmod +x tests/unit/ust-elf/test_ust_elf])
571 # Mini-report on what will be built.
579 AS_ECHO("${PPRINT_COLOR_BLDBLU}LTTng-ust $PACKAGE_VERSION \"V_NAME\"$PPRINT_COLOR_RST")
585 PPRINT_SUBTITLE([System])
587 PPRINT_PROP_STRING([Target architecture], $host_cpu)
589 test "x$NO_UNALIGNED_ACCESS" != "x1" && value=1 || value=0
590 PPRINT_PROP_BOOL([Efficient unaligned memory access], $value)
592 AS_IF([test "x$UNSUPPORTED_ARCH" = "x1"],[
593 PPRINT_WARN([Your architecture ($host_cpu) is unsupported, using safe default of no unaligned access.])
597 PPRINT_SUBTITLE([Features])
600 test "x$with_sdt" = "xyes" && value=1 || value=0
601 PPRINT_PROP_BOOL_CUSTOM([sdt.h integration], $value, [use --with-sdt])
603 test "x$java_agent_jul" = xyes && value=1 || value=0
604 PPRINT_PROP_BOOL_CUSTOM([Java agent (JUL support)], $value, [use --enable-java-agent-jul])
606 test "x$java_agent_log4j" = xyes && value=1 || value=0
607 PPRINT_PROP_BOOL_CUSTOM([Java agent (Log4j support)], $value, [use --enable-java-agent-log4j])
609 test "x$jni_interface" = xyes && value=1 || value=0
610 PPRINT_PROP_BOOL_CUSTOM([JNI interface (JNI)], $value, [use --enable-jni-interface])
612 test "x$python_agent" = xyes && value=1 || value=0
613 PPRINT_PROP_BOOL_CUSTOM([Python agent], $value, [use --enable-python-agent])
615 test "x$have_perf_event" = "xyes" && value=1 || value=0
616 PPRINT_PROP_BOOL_CUSTOM([Perf event integration], $value)
618 test "x$enable_numa" = xyes && value=1 || value=0
619 PPRINT_PROP_BOOL([NUMA], $value)
624 test "x$enable_examples" = xyes && value=1 || value=0
625 PPRINT_PROP_BOOL([Build and install examples], $value, $PPRINT_COLOR_SUBTITLE)
627 # man pages build enabled/disabled
628 m4_pushdef([build_man_pages_msg], [Build and install man pages])
630 AS_IF([test "x$man_pages_opt" != "xno"], [
631 AS_IF([test "x$in_git_repo" = "xyes"], [
632 PPRINT_PROP_BOOL([build_man_pages_msg], 1, $PPRINT_COLOR_SUBTITLE)
634 AS_IF([test "x$have_asciidoc_xmlto" = "xyes"], [
635 PPRINT_PROP_BOOL([build_man_pages_msg], 1, $PPRINT_COLOR_SUBTITLE)
637 PPRINT_PROP_STRING([build_man_pages_msg],
638 [${PPRINT_COLOR_BLDGRN}yes (already built)],
639 $PPRINT_COLOR_SUBTITLE)
643 PPRINT_PROP_BOOL([build_man_pages_msg], 0, $PPRINT_COLOR_SUBTITLE)
646 m4_popdef([build_man_pages_msg])
650 report_bindir="`eval eval echo $bindir`"
651 report_libdir="`eval eval echo $libdir`"
653 # Print the bindir and libdir this `make install' will install into.
655 PPRINT_SUBTITLE([Install directories])
656 PPRINT_PROP_STRING([Binaries], [$report_bindir])
657 PPRINT_PROP_STRING([Libraries], [$report_libdir])
660 PPRINT_SUBTITLE([System directories])
662 PPRINT_PROP_STRING([lttng-sessiond rundir], [$lttng_system_rundir])
666 AS_IF([test "x$warn_prebuilt_man_pages" = "xyes" ], [
668 PPRINT_WARN([Both asciidoc and xmlto are needed to build the LTTng-UST man pages.
670 Note that the man pages are already built in this distribution tarball,
671 therefore asciidoc and xmlto are only needed if you intend to modify
674 Use --disable-man-pages to completely disable building and installing