docs: Add supported versions and fix-backport policy
[lttng-tools.git] / configure.ac
CommitLineData
ab5be9fa 1dnl SPDX-License-Identifier: GPL-2.0-only
5d5baaa3 2AC_PREREQ([2.64])
6d780cff 3AC_INIT([lttng-tools],[2.14.0-pre],[jeremie.galarneau@efficios.com],[],[https://lttng.org])
b7d2e95f
MJ
4
5AC_CONFIG_HEADERS([include/config.h])
fac6795d 6AC_CONFIG_AUX_DIR([config])
b7d2e95f
MJ
7AC_CONFIG_MACRO_DIR([m4])
8
6e2d116c
DG
9AC_CANONICAL_TARGET
10AC_CANONICAL_HOST
b7d2e95f 11
343a7a98 12AM_INIT_AUTOMAKE([1.12 foreign dist-bzip2 no-dist-gzip tar-pax nostdinc])
d34cd287 13AM_MAINTAINER_MODE([enable])
b7d2e95f
MJ
14
15# Enable silent rules if available (Introduced in AM 1.11)
c615ee2f 16m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
fac6795d 17
c30417c1
SM
18
19## ##
20## C compiler checks ##
21## ##
22
23# Choose the C compiler
b7d2e95f 24AC_PROG_CC
faa88ea8
JG
25# AC_PROG_CC_STDC was merged in AC_PROG_CC in autoconf 2.70
26m4_version_prereq([2.70], [], [AC_PROG_CC_STDC])
a9c2df2b 27
c30417c1
SM
28# Make sure the C compiler supports C99
29AS_IF([test "$ac_cv_prog_cc_c99" = "no"], [AC_MSG_ERROR([The compiler does not support C99])])
30
31# Enable available system extensions and LFS support
32AC_USE_SYSTEM_EXTENSIONS
33AC_SYS_LARGEFILE
34
35# Make sure the C compiler supports __attribute__
36AX_C___ATTRIBUTE__
37AS_IF([test "x$ax_cv___attribute__" != "xyes"],
38 [AC_MSG_ERROR([The compiler does not support __attribute__ extensions])])
39
40# Make sure we have pthread support
41AX_PTHREAD([], [AC_MSG_ERROR([Could not configure pthread support])])
42
43# Checks for typedefs, structures, and compiler characteristics.
44AC_C_INLINE
45AC_TYPE_INT32_T
46AC_TYPE_INT64_T
47AC_TYPE_MODE_T
48AC_TYPE_OFF_T
49AC_TYPE_PID_T
50AC_TYPE_SIZE_T
51AC_TYPE_SSIZE_T
52AC_TYPE_UID_T
53AC_TYPE_UINT16_T
54AC_TYPE_UINT32_T
55AC_TYPE_UINT64_T
56AC_TYPE_UINT8_T
57
58# Detect warning flags supported by the C and C++ compilers and append them to
59# WARN_CFLAGS and WARN_CXXFLAGS.
a50f74e4 60m4_define([WARN_FLAGS_COMMON_LIST], [ dnl
c30417c1 61 -Wall dnl
e071bb36
MJ
62 -Wextra dnl
63 -Wmissing-declarations dnl
6ce1601f 64 -Wnull-dereference dnl
ce7fc42f 65 -Wundef dnl
19708280 66 -Wredundant-decls dnl
e071bb36
MJ
67 -Wshadow dnl
68 -Wsuggest-attribute=format dnl
69 -Wtautological-constant-out-of-range-compare dnl Clang specific
70 -Wwrite-strings dnl
71 -Wformat=2 dnl
72 -Wstrict-aliasing dnl
8471c105 73 -Wmissing-noreturn dnl
e071bb36
MJ
74 -Wduplicated-cond dnl
75 -Wduplicated-branches dnl
942003e5 76 -Wlogical-op dnl
e071bb36 77 -Winit-self dnl
c30417c1
SM
78 dnl We currently get this warning when building with Clang:
79 dnl
80 dnl /usr/include/setjmp.h:54:12: error: declaration of built-in function '__sigsetjmp' requires the declaration of the 'jmp_buf' type, commonly provided in the header <setjmp.h>. [-Werror,-Wincomplete-setjmp-declaration]
81 dnl extern int __sigsetjmp (struct __jmp_buf_tag __env[1], int __savemask) __THROWNL;
82 dnl ^
83 -Wno-incomplete-setjmp-declaration dnl
e071bb36 84 -Wno-gnu-folding-constant dnl Clang specific
a50f74e4
MJ
85])
86
87# Detect warning flags specific to the C compiler and append them to
88# WARN_CFLAGS.
89m4_define([WARN_FLAGS_C_LIST], [ dnl
90 -Wdiscarded-qualifiers dnl
91 -Wmissing-prototypes dnl
92 -Wmissing-parameter-type dnl
d67dc273
SM
93 -Wsuggest-final-types dnl
94 -Wsuggest-final-methods dnl
95 -Wsuggest-override dnl
c30417c1
SM
96])
97
98# Pass -Werror as an extra flag during the test: this is needed to make the
99# -Wunknown-warning-option diagnostic fatal with clang.
100AC_LANG_PUSH([C])
a50f74e4 101AX_APPEND_COMPILE_FLAGS([WARN_FLAGS_COMMON_LIST WARN_FLAGS_C_LIST], [WARN_CFLAGS], [-Werror])
c30417c1
SM
102AC_LANG_POP([C])
103
104# The test used in AX_APPEND_COMPILE_FLAGS, generated using AC_LANG_PROGRAM, is
105# written in such a way that it triggers warnings with the following warning
106# flags. So they would always end up disabled if we put them there, because
107# the test program would not build.
7f08cc82 108#
c30417c1
SM
109# Enable them here unconditionally. They are supported by GCC >= 4.8 and by
110# Clang >= 3.3 (required by the project) and are only valid for C code.
111WARN_CFLAGS="${WARN_CFLAGS} -Wold-style-definition -Wstrict-prototypes"
112
113# Disable 'strict aliasing' if the C compiler supports it.
114AC_LANG_PUSH([C])
115AX_APPEND_COMPILE_FLAGS([-fno-strict-aliasing], [OPT_CFLAGS], [-Werror])
116AC_LANG_POP([C])
117
118
119## ##
120## C++ compiler checks ##
121## ##
122
123# Find a C++11 compiler with GNU extensions (-std=gnu++11)
124AX_CXX_COMPILE_STDCXX([11], [ext], [mandatory])
125
a50f74e4
MJ
126# Detect warning flags specific to the C++ compiler and append them to
127# WARN_CXXFLAGS.
128m4_define([WARN_FLAGS_CXX_LIST], [ dnl
129 dnl GCC enables this with -Wall in C++, and that generates a
130 dnl lot of warnings that have on average a low value to fix.
131 -Wno-sign-compare dnl
132])
133
7f08cc82
SM
134# Pass -Werror as an extra flag during the test: this is needed to make the
135# -Wunknown-warning-option diagnostic fatal with clang.
c30417c1 136AC_LANG_PUSH([C++])
a50f74e4 137AX_APPEND_COMPILE_FLAGS([WARN_FLAGS_COMMON_LIST WARN_FLAGS_CXX_LIST], [WARN_CXXFLAGS], [-Werror])
c30417c1
SM
138AC_LANG_POP([C++])
139
140# Disable 'strict aliasing' if the C++ compiler supports it.
141AC_LANG_PUSH([C++])
142AX_APPEND_COMPILE_FLAGS([-fno-strict-aliasing], [OPT_CXXFLAGS], [-Werror])
143AC_LANG_POP([C++])
144
145
146# When given, add -Werror to WARN_CFLAGS and WARN_CXXFLAGS.
147AC_ARG_ENABLE([Werror],[
148 AS_HELP_STRING([--enable-Werror], [Treat compiler warnings as errors.])
149])
150
151AS_IF([test "x$enable_Werror" = "xyes"], [
152 WARN_CFLAGS="${WARN_CFLAGS} -Werror"
153 WARN_CXXFLAGS="${WARN_CXXFLAGS} -Werror"
154])
fa3f8be9 155
b7d2e95f
MJ
156# Checks for programs.
157AC_PROG_GREP
b7d2e95f 158AC_PROG_MAKE_SET
81265501 159AC_PROG_SED
048f01ef 160AC_PROG_MKDIR_P
a6c09be3 161AC_PATH_PROG([report_fold], [fold])
b7d2e95f
MJ
162LT_INIT
163
65385a82 164# Check for objcopy, required by the base address statedump and dynamic linker tests
dc3c58c9
MJ
165AC_CHECK_TOOL([OBJCOPY], [objcopy])
166AS_IF([test "x$OBJCOPY" = "x"],
a6c09be3 167 [AC_MSG_WARN([Cannot find objcopy. The base address statedump and dynamic linker tests will be disabled. Install the binutils package to remediate this.])]
65385a82 168)
dc3c58c9 169AM_CONDITIONAL([HAVE_OBJCOPY], [test "x$OBJCOPY" != "x"])
65385a82 170
a6c09be3 171# check for pgrep
dc3c58c9
MJ
172AC_PATH_PROG([PGREP], [pgrep])
173AM_CONDITIONAL([HAVE_PGREP], [test "x$PGREP" != "x"])
a6c09be3 174
7e090e6b
MJ
175AC_PATH_PROG([SHELLCHECK], [shellcheck])
176AM_CONDITIONAL([HAVE_SHELLCHECK], [test "x$SHELLCHECK" != "x"])
177
7b49875c
JG
178# set $IN_GIT_REPO if we're in the Git repository; the `bootstrap` file
179# is not distributed in tarballs
180AS_IF([test -f "$srcdir/bootstrap"], [in_git_repo=yes], [in_git_repo=no])
181AM_CONDITIONAL([IN_GIT_REPO], [test "x$in_git_repo" = "xyes"])
182
a6c09be3
MJ
183# check for bison
184AC_PROG_YACC
185BISON=$YACC
186AX_PROG_BISON_VERSION([2.4], [have_bison=yes])
187
188AS_IF([test "x$have_bison" != "xyes"], [
189 AS_IF([test "x$in_git_repo" = "xyes"], [
190 AC_MSG_FAILURE([
191Bison >= 2.4 is required when building from the Git repository. You can
192set the YACC variable to override automatic detection.
193 ])
194 ], [
195 AC_MSG_WARN([
196Missing Bison >= 2.4. Note that the parser files are already built in
197this distribution tarball, so Bison is only needed if you intend to
198modify their sources. You can set the YACC variable to override automatic
199detection.
200 ])
201 ])
202])
203AM_CONDITIONAL([HAVE_BISON], [test "x$have_bison" = "xyes"])
204
205# check for flex
faa88ea8
JG
206# Prior to autoconf 2.70, AC_PROG_FLEX did not take an argument. This is not a
207# problem since the argument is silently ignored by older versions.
208AC_PROG_LEX([noyywrap])
a6c09be3
MJ
209FLEX=$LEX
210AX_PROG_FLEX_VERSION([2.5.35], [have_flex=yes])
211
212AS_IF([test "x$have_flex" != "xyes"], [
213 AS_IF([test "x$in_git_repo" = "xyes"], [
214 AC_MSG_FAILURE([
215Flex >= 2.5.35 is required when building from the Git repository. You can
216set the LEX variable to override automatic detection.
217 ])
218 ], [
219 AC_MSG_WARN([
220Missing Flex >= 2.5.35. Note that the lexer files are already built in
221this distribution tarball, so Flex is only needed if you intend to
222modify their sources. You can set the LEX variable to override automatic
223detection.
224 ])
225 ])
226])
227AM_CONDITIONAL([HAVE_FLEX], [test "x$have_flex" = "xyes"])
228
229
b7d2e95f 230
b75d311f
FD
231# Check if linker has the -no-pie option.
232AX_CHECK_LINK_FLAG([-no-pie], [linker_have_no_pie_option=yes])
233AM_CONDITIONAL([LINKER_HAVE_NO_PIE_OPTION], [test "x$linker_have_no_pie_option" = "xyes"])
234
507af6fc
MJ
235AX_LIB_SOCKET_NSL
236
d30b2041
MJ
237LT_NO_UNDEFINED=""
238AS_CASE([$host_os],
239 [cygwin*],
240 [
241 LT_NO_UNDEFINED="-no-undefined"
748399fc
MJ
242 ],
243 [cygwin*|darwin*|mingw*|solaris*],
244 [
245 # On platforms where we only support the relayd, disable the other binaries by default
246 AS_IF([test "x$enable_bin_lttng" = "x" ], [enable_bin_lttng=no])
247 AS_IF([test "x$enable_bin_lttng_consumerd" = "x" ], [enable_bin_lttng_consumerd=no])
248 AS_IF([test "x$enable_bin_lttng_crash" = "x" ], [enable_bin_lttng_crash=no])
249 AS_IF([test "x$enable_bin_lttng_sessiond" = "x" ], [enable_bin_lttng_sessiond=no])
250 AS_IF([test "x$enable_extras" = "x" ], [enable_extras=no])
251 AS_IF([test "x$with_lttng_ust" = "x" ], [with_lttng_ust=no])
d30b2041
MJ
252 ]
253)
254
255AC_SUBST(LT_NO_UNDEFINED)
256
b7d2e95f 257# Compute minor/major/patchlevel version numbers
18ecc6ae
MJ
258major_version=$(echo AC_PACKAGE_VERSION | $SED 's/^\([[0-9]]\)*\.[[0-9]]*\.[[0-9]]*.*$/\1/')
259minor_version=$(echo AC_PACKAGE_VERSION | $SED 's/^[[0-9]]*\.\([[0-9]]*\)\.[[0-9]]*.*$/\1/')
260patchlevel_version=$(echo AC_PACKAGE_VERSION | $SED 's/^[[0-9]]*\.[[0-9]]*\.\([[0-9]]*\).*$/\1/')
9d8c7763 261
81265501
MD
262AC_SUBST([MAJOR_VERSION], [$major_version])
263AC_SUBST([MINOR_VERSION], [$minor_version])
264AC_SUBST([PATCHLEVEL_VERSION], [$patchlevel_version])
8eaee515
DG
265AC_DEFINE_UNQUOTED([VERSION_MAJOR], $major_version, [LTTng-Tools major version number])
266AC_DEFINE_UNQUOTED([VERSION_MINOR], $minor_version, [LTTng-Tools minor version number])
267AC_DEFINE_UNQUOTED([VERSION_PATCHLEVEL], $patchlevel_version, [LTTng-Tools patchlevel version number])
81265501 268
97a1d630
MJ
269version_name="O-Beer"
270version_description="An alcoholic drink made from yeast-fermented malt flavored with hops."
18ecc6ae 271version_description_c=$(echo $version_description | $SED 's/"/\\"/g')
0e4cbe7e
DG
272
273AC_DEFINE_UNQUOTED([VERSION_NAME], ["$version_name"], "")
34f69498 274AC_DEFINE_UNQUOTED([VERSION_DESCRIPTION], ["$version_description_c"], "")
c6d4a597 275
6bd5984c
CB
276# libtool link_all_deplibs fixup. See http://bugs.lttng.org/issues/321.
277AC_ARG_ENABLE(libtool-linkdep-fixup,
278 AS_HELP_STRING([--disable-libtool-linkdep-fixup],
279 [disable the libtool fixup for linking all dependent libraries (link_all_deplibs)]),
280 libtool_fixup=$enableval,
281 libtool_fixup=yes)
282
283AS_IF([test "x$libtool_fixup" = "xyes"],
284 [
b7d2e95f 285 libtool_m4="$srcdir/m4/libtool.m4"
6bd5984c 286 libtool_flag_pattern=".*link_all_deplibs\s*,\s*\$1\s*)"
8f0646a0 287 AC_MSG_CHECKING([for occurrence(s) of link_all_deplibs = no in $libtool_m4])
18ecc6ae 288 libtool_flag_pattern_count=$($GREP -c "$libtool_flag_pattern\s*=\s*no" $libtool_m4)
6bd5984c
CB
289 AS_IF([test $libtool_flag_pattern_count -ne 0],
290 [
291 AC_MSG_RESULT([$libtool_flag_pattern_count])
292 AC_MSG_WARN([the detected libtool will not link all dependencies, forcing link_all_deplibs = unknown])
06884be1 293 $SED -i "s/\($libtool_flag_pattern\)\s*=\s*no/\1=unknown/g" $libtool_m4
6bd5984c
CB
294 ],
295 [
296 AC_MSG_RESULT([none])
297 ])
298 ])
299
347e0f14
CB
300AM_CONDITIONAL([NO_SHARED], [test x$enable_shared = xno])
301
fac6795d
DG
302AC_CHECK_HEADERS([ \
303 sys/types.h unistd.h fcntl.h string.h pthread.h limits.h \
304 signal.h stdlib.h sys/un.h sys/socket.h stdlib.h stdio.h \
d23e7e44
JR
305 getopt.h sys/ipc.h sys/shm.h popt.h grp.h arpa/inet.h \
306 netdb.h netinet/in.h paths.h stddef.h sys/file.h sys/ioctl.h \
57b90af7 307 sys/mount.h sys/param.h sys/time.h elf.h sys/random.h sys/syscall.h
fac6795d
DG
308])
309
b1b34226
MJ
310AM_CONDITIONAL([HAVE_ELF_H], [test x$ac_cv_header_elf_h = xyes])
311
b89ff596
JR
312# Basic functions check
313AC_CHECK_FUNCS([ \
afc5df03 314 atexit bzero clock_gettime dup2 fdatasync fls ftruncate \
4b223a67 315 gethostbyname gethostname getpagesize localtime_r memchr memrchr memset \
b89ff596 316 mkdir munmap putenv realpath rmdir socket strchr strcspn strdup \
f5436bfc 317 strncasecmp strndup strnlen strpbrk strrchr strstr strtol strtoul \
062fc3d8 318 strtoull dirfd gethostbyname2 getipnodebyname epoll_create1 \
5a23e035 319 sched_getcpu sysconf sync_file_range getrandom posix_fadvise \
e560c525 320 arc4random flock
b89ff596 321])
7d617f1d 322
3f3e7eb7 323# Check for pthread_setname_np and pthread_getname_np
cb8d0d24 324LTTNG_PTHREAD_SETNAME_NP
3f3e7eb7 325LTTNG_PTHREAD_GETNAME_NP
cb8d0d24 326
fbc08f38
MJ
327# Check if clock_gettime, timer_create, timer_settime, and timer_delete are available in lib rt, and if so,
328# add -lrt to LIBS
329AC_CHECK_LIB([rt], [clock_gettime, timer_create, timer_settime, timer_delete])
330
bc1d8ca0
PP
331# Checks for dl.
332AC_CHECK_LIB([dl], [dlopen], [
333 have_libdl=yes
334 libdl_name=dl
0a821fde 335 DL_LIBS="-ldl"
bc1d8ca0
PP
336], [
337 # libdl not found, check for dlopen in libc.
338 AC_CHECK_LIB([c], [dlopen], [
339 have_libc_dl=yes
340 libdl_name=c
0a821fde 341 DL_LIBS="-lc"
bc1d8ca0
PP
342 ], [
343 AC_MSG_ERROR([Cannot find dlopen in libdl nor libc. Use [LDFLAGS]=-Ldir to specify their location.])
344 ])
345])
0a821fde 346AC_SUBST(DL_LIBS)
bc1d8ca0
PP
347
348# Check if libdl has dlmopen support.
349AH_TEMPLATE([HAVE_DLMOPEN], ["Define to 1 if dlmopen is available."])
350AC_CHECK_LIB([$libdl_name], [dlmopen], [
351 AC_DEFINE([HAVE_DLMOPEN], [1])
352 HAVE_DLMOPEN=1
353], [
354 HAVE_DLMOPEN=0
355])
356AC_SUBST(HAVE_DLMOPEN)
357
0c95f5b2
DG
358# Babeltrace viewer check
359AC_ARG_WITH([babeltrace-bin],
360 AS_HELP_STRING([--with-babeltrace-bin],
361 [Location of the babeltrace viewer executable (including the filename)]),
362 [BABELTRACE_BIN="$withval"],
363 [BABELTRACE_BIN=''])
364AC_SUBST([BABELTRACE_BIN])
365
3cd887b3
JG
366AC_ARG_WITH([babeltrace2-bin],
367 AS_HELP_STRING([--with-babeltrace2-bin],
368 [Location of the babeltrace2 viewer executable (including the filename)]),
369 [BABELTRACE2_BIN="$withval"],
370 [BABELTRACE2_BIN=''])
371AC_SUBST([BABELTRACE2_BIN])
0c95f5b2 372
fc7a59ce
AM
373AC_ARG_WITH([consumerd32-bin],
374 AS_HELP_STRING([--with-consumerd32-bin],
375 [Location of the 32-bit consumerd executable (including the filename)]),
376 [CONSUMERD32_BIN="$withval"],
377 [CONSUMERD32_BIN=''])
378AC_SUBST([CONSUMERD32_BIN])
ebaeda94 379
fc7a59ce
AM
380AC_ARG_WITH([consumerd64-bin],
381 AS_HELP_STRING([--with-consumerd64-bin],
382 [Location of the 64-bit consumerd executable (including the filename)]),
383 [CONSUMERD64_BIN="$withval"],
384 [CONSUMERD64_BIN=''])
385AC_SUBST([CONSUMERD64_BIN])
ebaeda94
MD
386
387AC_ARG_WITH([consumerd32-libdir],
a4b279ba 388 AS_HELP_STRING([--with-consumerd32-libdir],
fc7a59ce 389 [Directory containing the 32-bit consumerd libraries]),
ebaeda94
MD
390 [CONSUMERD32_LIBDIR="$withval"],
391 [CONSUMERD32_LIBDIR=''])
392AC_SUBST([CONSUMERD32_LIBDIR])
393
ec029701 394AC_ARG_WITH([consumerd64-libdir],
a4b279ba 395 AS_HELP_STRING([--with-consumerd64-libdir],
fc7a59ce 396 [Directory containing the 64-bit consumerd libraries]),
ebaeda94
MD
397 [CONSUMERD64_LIBDIR="$withval"],
398 [CONSUMERD64_LIBDIR=''])
399AC_SUBST([CONSUMERD64_LIBDIR])
400
b8ec3da8
SM
401AC_ARG_WITH([sessiond-bin],
402 AS_HELP_STRING([--with-sessiond-bin],
403 [Location of the sessiond executable (including the filename)]),
404 [SESSIOND_BIN="$withval"],
405 [SESSIOND_BIN=''])
406AC_SUBST([SESSIOND_BIN])
407
d386c872
MD
408AC_ARG_WITH([lttng-system-rundir],
409 AS_HELP_STRING([--with-lttng-system-rundir],
410 [Location of the system directory where the system-wide lttng-sessiond runtime files are kept. The default is "/var/run/lttng".]),
411 [LTTNG_SYSTEM_RUNDIR="$withval"],
412 [LTTNG_SYSTEM_RUNDIR="/var/run/lttng"])
413AC_SUBST([LTTNG_SYSTEM_RUNDIR])
414
839a9569
MJ
415AC_ARG_ENABLE([test-java-agent-jul],
416 [AS_HELP_STRING([--enable-test-java-agent-jul],[enable the LTTng UST Java agent JUL tests [default=no]])],
417 [test_java_agent_jul=$enableval],
418 [test_java_agent_jul=no]
419)
420
421AC_ARG_ENABLE([test-java-agent-log4j],
0fd2fd15 422 [AS_HELP_STRING([--enable-test-java-agent-log4j],[enable the LTTng UST Java agent Log4j 1.x tests [default=no]])],
839a9569
MJ
423 [test_java_agent_log4j=$enableval],
424 [test_java_agent_log4j=no]
425)
426
0fd2fd15
MJ
427AC_ARG_ENABLE([test-java-agent-log4j2],
428 [AS_HELP_STRING([--enable-test-java-agent-log4j2],[enable the LTTng UST Java agent Log4j 2.x tests [default=no]])],
429 [test_java_agent_log4j2=$enableval],
430 [test_java_agent_log4j2=no]
431)
432
839a9569
MJ
433AC_ARG_ENABLE([test-java-agent-all],
434 [AS_HELP_STRING([--enable-test-java-agent-all],[enable all the LTTng UST Java agent tests [default=no]])],
435 [test_java_agent_jul=$enableval
0fd2fd15
MJ
436 test_java_agent_log4j=$enableval
437 test_java_agent_log4j2=$enableval],
839a9569
MJ
438 [:]
439)
440
fb6f1fa2
YB
441AC_DEFINE_UNQUOTED([CONFIG_CONSUMERD32_BIN], "$CONSUMERD32_BIN", [Location of the 32-bit consumerd executable.])
442AC_DEFINE_UNQUOTED([CONFIG_CONSUMERD64_BIN], "$CONSUMERD64_BIN", [Location of the 64-bit consumerd executable])
443AC_DEFINE_UNQUOTED([CONFIG_CONSUMERD32_LIBDIR], "$CONSUMERD32_LIBDIR", [Search for consumerd 32-bit libraries in this location.])
444AC_DEFINE_UNQUOTED([CONFIG_CONSUMERD64_LIBDIR], "$CONSUMERD64_LIBDIR", [Search for consumerd 64-bit libraries in this location.])
0c95f5b2 445AC_DEFINE_UNQUOTED([CONFIG_BABELTRACE_BIN], "$BABELTRACE_BIN", [Location of the babeltrace viewer executable.])
3cd887b3 446AC_DEFINE_UNQUOTED([CONFIG_BABELTRACE2_BIN], "$BABELTRACE2_BIN", [Location of the babeltrace2 viewer executable.])
b8ec3da8 447AC_DEFINE_UNQUOTED([CONFIG_SESSIOND_BIN], "$SESSIOND_BIN", [Location of the sessiond executable.])
d386c872 448AC_DEFINE_UNQUOTED([CONFIG_LTTNG_SYSTEM_RUNDIR], ["$LTTNG_SYSTEM_RUNDIR"], [LTTng system runtime directory])
43cadc7e 449
7659d490
PP
450AC_DEFUN([_AC_DEFINE_AND_SUBST], [
451 AC_DEFINE_UNQUOTED([CONFIG_$1], [$2], [$1])
452 $1="$2"
453 AC_SUBST([$1])
454])
455
456AC_DEFUN([_AC_DEFINE_QUOTED_AND_SUBST], [
457 AC_DEFINE_UNQUOTED([CONFIG_$1], ["$2"], [$1])
458 $1="$2"
459 AC_SUBST([$1])
460])
461
462# Default values
c9eb1ddc 463m4_define([_DEFAULT_CHANNEL_SUBBUF_SIZE], [16384])
7659d490
PP
464m4_define([_DEFAULT_CHANNEL_SUBBUF_NUM], [4])
465m4_define([_DEFAULT_CHANNEL_SWITCH_TIMER], [0])
466m4_define([_DEFAULT_CHANNEL_LIVE_TIMER], [0])
467m4_define([_DEFAULT_CHANNEL_READ_TIMER], [200000])
e9404c27 468m4_define([_DEFAULT_CHANNEL_MONITOR_TIMER], [1000000])
491d1539 469m4_define([_DEFAULT_CHANNEL_BLOCKING_TIMEOUT], [0])
2288467f
JG
470_AC_DEFINE_AND_SUBST([DEFAULT_AGENT_TCP_PORT_RANGE_BEGIN], [5345])
471_AC_DEFINE_AND_SUBST([DEFAULT_AGENT_TCP_PORT_RANGE_END], [5354])
7659d490
PP
472_AC_DEFINE_AND_SUBST([DEFAULT_APP_SOCKET_RW_TIMEOUT], [5])
473_AC_DEFINE_AND_SUBST([DEFAULT_CHANNEL_SUBBUF_SIZE], [_DEFAULT_CHANNEL_SUBBUF_SIZE])
474_AC_DEFINE_AND_SUBST([DEFAULT_CHANNEL_TRACEFILE_COUNT], [0])
475_AC_DEFINE_AND_SUBST([DEFAULT_CHANNEL_TRACEFILE_SIZE], [0])
476_AC_DEFINE_AND_SUBST([DEFAULT_KERNEL_CHANNEL_LIVE_TIMER], [_DEFAULT_CHANNEL_LIVE_TIMER])
477_AC_DEFINE_AND_SUBST([DEFAULT_KERNEL_CHANNEL_READ_TIMER], [_DEFAULT_CHANNEL_READ_TIMER])
478_AC_DEFINE_AND_SUBST([DEFAULT_KERNEL_CHANNEL_SUBBUF_NUM], [_DEFAULT_CHANNEL_SUBBUF_NUM])
c9eb1ddc 479_AC_DEFINE_AND_SUBST([DEFAULT_KERNEL_CHANNEL_SUBBUF_SIZE], [1048576])
7659d490 480_AC_DEFINE_AND_SUBST([DEFAULT_KERNEL_CHANNEL_SWITCH_TIMER], [_DEFAULT_CHANNEL_SWITCH_TIMER])
e9404c27 481_AC_DEFINE_AND_SUBST([DEFAULT_KERNEL_CHANNEL_MONITOR_TIMER], [_DEFAULT_CHANNEL_MONITOR_TIMER])
491d1539 482_AC_DEFINE_AND_SUBST([DEFAULT_KERNEL_CHANNEL_BLOCKING_TIMEOUT], [_DEFAULT_CHANNEL_BLOCKING_TIMEOUT])
7659d490
PP
483_AC_DEFINE_AND_SUBST([DEFAULT_LTTNG_LIVE_TIMER], [1000000])
484_AC_DEFINE_AND_SUBST([DEFAULT_METADATA_CACHE_SIZE], [4096])
485_AC_DEFINE_AND_SUBST([DEFAULT_METADATA_READ_TIMER], [0])
486_AC_DEFINE_AND_SUBST([DEFAULT_METADATA_SUBBUF_NUM], [2])
487_AC_DEFINE_AND_SUBST([DEFAULT_METADATA_SUBBUF_SIZE], [4096])
488_AC_DEFINE_AND_SUBST([DEFAULT_METADATA_SWITCH_TIMER], [_DEFAULT_CHANNEL_SWITCH_TIMER])
489_AC_DEFINE_AND_SUBST([DEFAULT_NETWORK_CONTROL_PORT], [5342])
490_AC_DEFINE_AND_SUBST([DEFAULT_NETWORK_DATA_PORT], [5343])
491_AC_DEFINE_AND_SUBST([DEFAULT_NETWORK_VIEWER_PORT], [5344])
492_AC_DEFINE_AND_SUBST([DEFAULT_UST_PID_CHANNEL_LIVE_TIMER], [_DEFAULT_CHANNEL_LIVE_TIMER])
493_AC_DEFINE_AND_SUBST([DEFAULT_UST_PID_CHANNEL_READ_TIMER], [0])
491d1539 494_AC_DEFINE_AND_SUBST([DEFAULT_UST_PID_CHANNEL_BLOCKING_TIMEOUT], [0])
7659d490
PP
495_AC_DEFINE_AND_SUBST([DEFAULT_UST_PID_CHANNEL_SUBBUF_NUM], [_DEFAULT_CHANNEL_SUBBUF_NUM])
496_AC_DEFINE_AND_SUBST([DEFAULT_UST_PID_CHANNEL_SUBBUF_SIZE], [_DEFAULT_CHANNEL_SUBBUF_SIZE])
497_AC_DEFINE_AND_SUBST([DEFAULT_UST_PID_CHANNEL_SWITCH_TIMER], [_DEFAULT_CHANNEL_SWITCH_TIMER])
e9404c27 498_AC_DEFINE_AND_SUBST([DEFAULT_UST_PID_CHANNEL_MONITOR_TIMER], [_DEFAULT_CHANNEL_MONITOR_TIMER])
7659d490
PP
499_AC_DEFINE_AND_SUBST([DEFAULT_UST_UID_CHANNEL_LIVE_TIMER], [_DEFAULT_CHANNEL_LIVE_TIMER])
500_AC_DEFINE_AND_SUBST([DEFAULT_UST_UID_CHANNEL_READ_TIMER], [0])
491d1539 501_AC_DEFINE_AND_SUBST([DEFAULT_UST_UID_CHANNEL_BLOCKING_TIMEOUT], [0])
7659d490 502_AC_DEFINE_AND_SUBST([DEFAULT_UST_UID_CHANNEL_SUBBUF_NUM], [_DEFAULT_CHANNEL_SUBBUF_NUM])
c9eb1ddc 503_AC_DEFINE_AND_SUBST([DEFAULT_UST_UID_CHANNEL_SUBBUF_SIZE], [524288])
7659d490 504_AC_DEFINE_AND_SUBST([DEFAULT_UST_UID_CHANNEL_SWITCH_TIMER], [_DEFAULT_CHANNEL_SWITCH_TIMER])
e9404c27 505_AC_DEFINE_AND_SUBST([DEFAULT_UST_UID_CHANNEL_MONITOR_TIMER], [_DEFAULT_CHANNEL_MONITOR_TIMER])
7659d490
PP
506_AC_DEFINE_QUOTED_AND_SUBST([DEFAULT_AGENT_BIND_ADDRESS], [localhost])
507_AC_DEFINE_QUOTED_AND_SUBST([DEFAULT_NETWORK_CONTROL_BIND_ADDRESS], [0.0.0.0])
508_AC_DEFINE_QUOTED_AND_SUBST([DEFAULT_NETWORK_DATA_BIND_ADDRESS], [0.0.0.0])
509_AC_DEFINE_QUOTED_AND_SUBST([DEFAULT_NETWORK_VIEWER_BIND_ADDRESS], [localhost])
715e6fb1 510_AC_DEFINE_AND_SUBST([DEFAULT_NETWORK_RELAYD_CTRL_MAX_PAYLOAD_SIZE], [134217728])
92816cc3 511_AC_DEFINE_AND_SUBST([DEFAULT_ROTATE_PENDING_TIMER], [500000])
90aa04a1 512_AC_DEFINE_AND_SUBST([DEFAULT_EVENT_NOTIFIER_ERROR_COUNT_MAP_SIZE], [4096])
7659d490 513
61fa5028 514# Command short descriptions
484b2a0c
PP
515_AC_DEFINE_QUOTED_AND_SUBST([CMD_DESCR_ADD_CONTEXT], [Add context fields to be recorded])
516_AC_DEFINE_QUOTED_AND_SUBST([CMD_DESCR_ADD_TRIGGER], [Add a trigger])
e9711845
PP
517_AC_DEFINE_QUOTED_AND_SUBST([CMD_DESCR_CLEAR], [Clear a recording session])
518_AC_DEFINE_QUOTED_AND_SUBST([CMD_DESCR_CREATE], [Create a recording session])
519_AC_DEFINE_QUOTED_AND_SUBST([CMD_DESCR_DESTROY], [Destroy recording sessions])
484b2a0c
PP
520_AC_DEFINE_QUOTED_AND_SUBST([CMD_DESCR_DISABLE_CHANNEL], [Disable channels])
521_AC_DEFINE_QUOTED_AND_SUBST([CMD_DESCR_DISABLE_EVENT], [Disable recording event rules])
e9711845 522_AC_DEFINE_QUOTED_AND_SUBST([CMD_DESCR_DISABLE_ROTATION], [Unset a recording session rotation schedule])
484b2a0c
PP
523_AC_DEFINE_QUOTED_AND_SUBST([CMD_DESCR_ENABLE_CHANNEL], [Create or enable a channel])
524_AC_DEFINE_QUOTED_AND_SUBST([CMD_DESCR_ENABLE_EVENT], [Create or enable recording event rules])
e9711845 525_AC_DEFINE_QUOTED_AND_SUBST([CMD_DESCR_ENABLE_ROTATION], [Set a recording session rotation schedule])
484b2a0c 526_AC_DEFINE_QUOTED_AND_SUBST([CMD_DESCR_HELP], [Show the help of a command])
e9711845 527_AC_DEFINE_QUOTED_AND_SUBST([CMD_DESCR_LIST], [List recording sessions and instrumentation points])
484b2a0c 528_AC_DEFINE_QUOTED_AND_SUBST([CMD_DESCR_LIST_TRIGGERS], [List triggers])
e9711845
PP
529_AC_DEFINE_QUOTED_AND_SUBST([CMD_DESCR_LOAD], [Load recording session configurations])
530_AC_DEFINE_QUOTED_AND_SUBST([CMD_DESCR_REGENERATE], [Regenerate specific recording session data])
484b2a0c 531_AC_DEFINE_QUOTED_AND_SUBST([CMD_DESCR_REMOVE_TRIGGER], [Remove a trigger])
e9711845
PP
532_AC_DEFINE_QUOTED_AND_SUBST([CMD_DESCR_ROTATE], [Archive the current trace chunk of a recording session])
533_AC_DEFINE_QUOTED_AND_SUBST([CMD_DESCR_SAVE], [Save recording session configurations])
534_AC_DEFINE_QUOTED_AND_SUBST([CMD_DESCR_SET_SESSION], [Set the current recording session])
535_AC_DEFINE_QUOTED_AND_SUBST([CMD_DESCR_SNAPSHOT], [Take a recording session snapshot])
536_AC_DEFINE_QUOTED_AND_SUBST([CMD_DESCR_START], [Start a recording session])
537_AC_DEFINE_QUOTED_AND_SUBST([CMD_DESCR_STATUS], [Show the status of the current recording session])
538_AC_DEFINE_QUOTED_AND_SUBST([CMD_DESCR_STOP], [Stop a recording session])
26f0c779
PP
539_AC_DEFINE_QUOTED_AND_SUBST([CMD_DESCR_TRACK], [Allow specific processes to record events])
540_AC_DEFINE_QUOTED_AND_SUBST([CMD_DESCR_UNTRACK], [Disallow specific processes to record events])
484b2a0c
PP
541_AC_DEFINE_QUOTED_AND_SUBST([CMD_DESCR_VERSION], [Show LTTng-tools version information])
542_AC_DEFINE_QUOTED_AND_SUBST([CMD_DESCR_VIEW], [Launch a trace reader])
61fa5028 543
26296c48
JG
544if test "x$prefix" = "xNONE"; then
545 prefix=$ac_default_prefix
546fi
547CONFDIR=`eval echo $sysconfdir`
548AC_SUBST(CONFDIR)
549AC_DEFINE_UNQUOTED([CONFIG_LTTNG_SYSTEM_CONFIGDIR],"$CONFDIR", [LTTng system configuration directory.])
550
7602c3c7 551AX_DEFINE_DIR([CONFIG_LTTNG_SYSTEM_DATADIR], [datadir], [LTTng system data directory.])
dcf266c0 552
fac6795d 553# Check libpopt
e9cee23a 554PKG_CHECK_MODULES([POPT], [popt],
4f985cf8
MJ
555 [
556 dnl PKG_CHECK_MODULES defines POPT_LIBS
557 ],
558 [
559 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])
560 AC_MSG_WARN([Finding libpopt without pkg-config.])
561 AC_CHECK_LIB([popt],
562 [poptGetContext],
563 [POPT_LIBS="-lpopt"],
564 [
565 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])
566 ]
567 )
568 ]
fac6795d 569)
4f985cf8 570AC_SUBST(POPT_LIBS)
fac6795d 571
34707125 572PKG_CHECK_MODULES([libxml2], [libxml-2.0 >= 2.7.6])
6c1494fd 573
707de922
JG
574AC_CHECK_FUNC([clock_gettime], [AC_DEFINE_UNQUOTED([LTTNG_HAVE_CLOCK_GETTIME], 1, [Has clock_gettime() support.])])
575
6e59ae26 576# URCU library version needed or newer
cc22de98
MJ
577PKG_CHECK_MODULES([URCU], [liburcu >= 0.14])
578PKG_CHECK_MODULES([URCU_CDS], [liburcu-cds >= 0.14])
62b7418e 579AM_CPPFLAGS="$AM_CPPFLAGS $URCU_CFLAGS"
ce4d4083 580
83dcc026
MJ
581# Check for libkmod, it will be auto-neabled if found but won't fail if it's not,
582# it can be explicitly disabled with --without-kmod
583AH_TEMPLATE([HAVE_KMOD], [Define if you have kmod support])
584AC_ARG_WITH([kmod],
585 [AS_HELP_STRING([--with-kmod], [build with lkmod support @<:@default=check@:>@])],
586 [],
587 [with_kmod=check]
588)
234170ac 589
83dcc026
MJ
590AS_IF([test "x$with_kmod" != "xno"],
591 [
592 AC_CHECK_LIB([kmod], [kmod_module_probe_insert_module],
593 [
594 AC_DEFINE([HAVE_KMOD], [1])
595 KMOD_LIBS="-lkmod"
596 ],
597 [
598 if test "x$with_kmod" != xcheck; then
599 AC_MSG_FAILURE([Cannot find libkmod. Use [LDFLAGS]=-Ldir and [CPPFLAGS]=-Idir to specify its location.])
600 else
601 with_kmod=no
602 fi
603 ]
604 )
605 ]
606)
607AC_SUBST(KMOD_LIBS)
234170ac 608
5744bf89
MJ
609# Check for liblttng-ust-ctl, fail if it's not found,
610# it can be explicitly disabled with --without-lttng-ust
611AH_TEMPLATE([HAVE_LIBLTTNG_UST_CTL], [Define if you have LTTng-UST control support])
612AC_ARG_WITH([lttng-ust],
613 [AS_HELP_STRING([--without-lttng-ust], [build without LTTng-UST (Userspace Tracing) support])],
614 [],
615 [with_lttng_ust=yes]
616)
617
20dd2de1
MJ
618AS_IF([test "x$with_lttng_ust" = "xyes"], [
619 AC_DEFINE([HAVE_LIBLTTNG_UST_CTL], [1])
620
621 # Check for liblttng-ust
622 PKG_CHECK_MODULES([UST], [lttng-ust >= $major_version.$minor_version])
623
624 # Check for liblttng-ust-ctl
625 PKG_CHECK_MODULES([UST_CTL], [lttng-ust-ctl >= $major_version.$minor_version])
626
627 AM_CPPFLAGS="$AM_CPPFLAGS $UST_CFLAGS"
628])
629
5744bf89
MJ
630AM_CONDITIONAL([HAVE_LIBLTTNG_UST_CTL], [test "x$with_lttng_ust" = "xyes"])
631
b91dd016 632
53a80697
MD
633# Check for fmemopen
634AC_CHECK_LIB([c], [fmemopen],
635[
636 AC_DEFINE_UNQUOTED([LTTNG_HAVE_FMEMOPEN], 1, [Has fmemopen support.])
637]
638)
639
6faa26ca
JD
640# check for libpfm
641AC_CHECK_LIB([pfm], [pfm_initialize],
642 [
643 have_libpfm=yes
644 ])
645AM_CONDITIONAL([LTTNG_TOOLS_BUILD_WITH_LIBPFM], [test "x$have_libpfm" = "xyes"])
646
36907cb5
DS
647# For Python
648# SWIG version needed or newer:
649swig_version=2.0.0
650
651AC_ARG_ENABLE([python-bindings],
faa88ea8 652 [AS_HELP_STRING([--enable-python-bindings],
36907cb5 653 [compile Python bindings])],
e9c45a26 654 [enable_python_binding=$enableval], [enable_python_binding=no])
36907cb5 655
e9c45a26 656AM_CONDITIONAL([PYTHON_BINDING], [test "x$enable_python_binding" = xyes])
36907cb5 657
e9c45a26 658if test "x$enable_python_binding" = xyes; then
36907cb5 659 AX_PKG_SWIG($swig_version, [], [ AC_MSG_ERROR([SWIG $swig_version or newer is needed]) ])
f558e55e 660 AS_IF([test x$enable_shared = xno], [ AC_MSG_ERROR([Python bindings require shared libraries.]) ])
4a0509e2 661 AM_PATH_PYTHON([3.4])
36907cb5
DS
662
663 AC_ARG_VAR([PYTHON_INCLUDE], [Include flags for python, bypassing python-config])
664 AC_ARG_VAR([PYTHON_CONFIG], [Path to python-config])
665 AS_IF([test -z "$PYTHON_INCLUDE"], [
666 AS_IF([test -z "$PYTHON_CONFIG"], [
667 AC_PATH_PROGS([PYTHON_CONFIG],
668 [python$PYTHON_VERSION-config python-config],
dc3c58c9 669 [],
36907cb5 670 [`dirname $PYTHON`])
dc3c58c9 671 AS_IF([test "x$PYTHON_CONFIG" = "x"], [AC_MSG_ERROR([cannot find python-config for $PYTHON. Do you have python-dev installed?])])
36907cb5
DS
672 ])
673 AC_MSG_CHECKING([python include flags])
674 PYTHON_INCLUDE=`$PYTHON_CONFIG --includes`
675 AC_MSG_RESULT([$PYTHON_INCLUDE])
676 ])
677
678else
679 AC_MSG_NOTICE([You may configure with --enable-python-bindings ]dnl
680[if you want Python bindings.])
681
682fi
683
3ffccaed 684# Epoll check. If not present, the build will fallback on poll() API
71615260
DG
685AX_HAVE_EPOLL(
686 [AX_CONFIG_FEATURE_ENABLE(epoll)],
687 [AX_CONFIG_FEATURE_DISABLE(epoll)]
688)
71615260
DG
689AX_CONFIG_FEATURE(
690 [epoll], [This platform supports epoll(7)],
0060607b 691 [HAVE_EPOLL], [This platform supports epoll(7).]
71615260 692)
71615260 693
18710679
JG
694AS_IF([test "x$ac_cv_func_dirfd" = "xyes"],
695 [AX_CONFIG_FEATURE_ENABLE(dirfd)],
696 [AX_CONFIG_FEATURE_DISABLE(dirfd)]
697)
698AX_CONFIG_FEATURE(
699 [dirfd], [Use directory file descriptors],
4fb28dfc 700 [HAVE_DIRFD], [This platform supports directory file descriptors.]
18710679 701)
18710679 702
839a9569
MJ
703AM_CONDITIONAL([TEST_JAVA_JUL_AGENT], [test "x$test_java_agent_jul" = "xyes"])
704AM_CONDITIONAL([TEST_JAVA_LOG4J_AGENT], [test "x$test_java_agent_log4j" = "xyes"])
0fd2fd15 705AM_CONDITIONAL([TEST_JAVA_LOG4J2_AGENT], [test "x$test_java_agent_log4j2" = "xyes"])
37175ce4 706
0fd2fd15 707if test "x$test_java_agent_jul" = "xyes" || test "x$test_java_agent_log4j" = "xyes" || test "x$test_java_agent_log4j2" = "xyes"; then
839a9569
MJ
708 AX_JAVA_OPTIONS
709 AX_PROG_JAVAC
710 AX_PROG_JAVA
711 AX_PROG_JAR
37175ce4 712
839a9569 713 AX_CHECK_CLASSPATH
504d4ace 714
839a9569
MJ
715 # Check for Java UST agent common class first
716 AX_CHECK_CLASS(org.lttng.ust.agent.AbstractLttngAgent)
717 if test "x$ac_cv_class_org_lttng_ust_agent_AbstractLttngAgent" = "xno"; then
718 AC_MSG_ERROR([The UST Java agent common class was not found. Please specify the location of the jar via the Java CLASSPATH e.g: export CLASSPATH="/path/to/lttng-ust-agent-common.jar"])
504d4ace 719 fi
0b7af945 720
839a9569
MJ
721 if test "x$test_java_agent_jul" = "xyes"; then
722 # Check for JUL agent class
723 AX_CHECK_CLASS(org.lttng.ust.agent.jul.LttngLogHandler)
724 if test "x$ac_cv_class_org_lttng_ust_agent_jul_LttngLogHandler" = "xno"; then
725 AC_MSG_ERROR([The UST Java agent JUL class was not found. Please specify the location of the jar via the Java CLASSPATH e.g: export CLASSPATH="/path/to/lttng-ust-agent-jul.jar"])
0b7af945
MJ
726 fi
727 fi
728
839a9569
MJ
729 if test "x$test_java_agent_log4j" = "xyes"; then
730 # Check for Log4j agent class
731 AX_CHECK_CLASS(org.lttng.ust.agent.log4j.LttngLogAppender)
732 if test "x$ac_cv_class_org_lttng_ust_agent_log4j_LttngLogAppender" = "xno"; then
733 AC_MSG_ERROR([The UST Java agent Log4j class was not found. Please specify the location of the jar via the Java CLASSPATH e.g: export CLASSPATH="/path/to/lttng-ust-agent-log4j.jar"])
734 fi
0b7af945 735
839a9569
MJ
736 # Check for Log4j class
737 AX_CHECK_CLASS(org.apache.log4j.Logger)
738 if test "x$ac_cv_class_org_apache_log4j_Logger" = "xno"; then
739 AC_MSG_ERROR([The Log4j class was not found. Please specify the location of the jar via the Java CLASSPATH e.g: export CLASSPATH="/path/to/log4j.jar"])
740 fi
741 fi
0fd2fd15
MJ
742
743 if test "x$test_java_agent_log4j2" = "xyes"; then
744 # Check for Log4j2 agent class
745 AX_CHECK_CLASS(org.lttng.ust.agent.log4j2.LttngLogAppender)
746 if test "x$ac_cv_class_org_lttng_ust_agent_log4j2_LttngLogAppender" = "xno"; then
747 AC_MSG_ERROR([The UST Java agent Log4j 2.x class was not found. Please specify the location of the jar via the Java CLASSPATH e.g: export CLASSPATH="/path/to/lttng-ust-agent-log4j2.jar"])
748 fi
749
750 # Check for Log4j 2.x classes
751 AX_CHECK_CLASS([org.apache.logging.log4j.Logger])
752 AX_CHECK_CLASS([org.apache.logging.log4j.core.Core])
753 if test "x$ac_cv_class_org_apache_logging_log4j_Logger" = "xno" || test "x$ac_cv_class_org_apache_logging_log4j_core_Core" = "xno"; then
754 AC_MSG_ERROR([The Log4j 2.x API or core class was not found. Please specify the location of the jars via the Java CLASSPATH e.g: export CLASSPATH="/path/to/log4j-core.jar:/path/to/log4j-api.jar"])
755 fi
756 fi
839a9569 757fi
37175ce4 758
048f01ef
PP
759# API documentation using Doxygen
760AC_ARG_ENABLE([api-doc], [
761 AS_HELP_STRING([--enable-api-doc], [build HTML API documentation])
762], [api_doc=$enableval], [api_doc=no])
763
764AS_IF([test "x$api_doc" = xyes], [
765 DX_DOXYGEN_FEATURE(ON)
766 DX_DOT_FEATURE(OFF)
767 DX_HTML_FEATURE(ON)
768 DX_CHM_FEATURE(OFF)
769 DX_CHI_FEATURE(OFF)
770 DX_MAN_FEATURE(OFF)
771 DX_RTF_FEATURE(OFF)
772 DX_XML_FEATURE(OFF)
773 DX_PDF_FEATURE(OFF)
774 DX_PS_FEATURE(OFF)
775 DX_INIT_DOXYGEN(["LTTng control library"], [$(builddir)/Doxyfile], [output])
776
777 AS_IF([test -z "$DX_DOXYGEN"], [
778 AC_MSG_ERROR([You need Doxygen to build the liblttng-ctl API documentation])
779 ])
780])
781
782AM_CONDITIONAL([API_DOC], [test "x$api_doc" = xyes])
783
a3eae3c9 784# enable building man pages (user's intention)
008559fa 785AC_ARG_ENABLE(
a3eae3c9 786 man-pages,
008559fa 787 AS_HELP_STRING(
a3eae3c9 788 [--disable-man-pages],
24c872d0 789 [Do not build and install man pages (already built in a distributed tarball)]
008559fa 790 ),
a3eae3c9
PP
791 [man_pages_opt=$enableval],
792 [man_pages_opt=yes]
008559fa
PP
793)
794
008559fa 795# check for asciidoc and xmlto if we enabled building the man pages
a3eae3c9 796have_asciidoc_xmlto=no
a24d43ae 797warn_prebuilt_man_pages=no
a3eae3c9
PP
798
799AS_IF([test "x$man_pages_opt" = "xyes"], [
dc3c58c9
MJ
800 AC_PATH_PROG([ASCIIDOC], [asciidoc])
801 AC_PATH_PROG([XMLTO], [xmlto])
008559fa 802
dc3c58c9 803 AS_IF([test "x$ASCIIDOC" = "x" || test "x$XMLTO" = "x"], [
a3eae3c9
PP
804 AS_IF([test "x$in_git_repo" = "xyes"], [
805 # this is an error because we're in the Git repo, which
806 # means the man pages are not already generated for us,
807 # thus asciidoc/xmlto are required because we were asked
808 # to build the man pages
809 AC_MSG_ERROR([
fd3e1238 810You need asciidoc and xmlto to build the LTTng-tools man pages. Use
a3eae3c9
PP
811--disable-man-pages to disable building the man pages, in which case
812they will not be installed.
813 ])
814 ], [
815 # only warn here: since we're in the tarball, the man
816 # pages should already be generated at this point, thus
817 # asciidoc/xmlto are not strictly required
a24d43ae 818 warn_prebuilt_man_pages=yes
a3eae3c9
PP
819 ])
820 ], [
821 have_asciidoc_xmlto=yes
008559fa
PP
822 ])
823])
824
a3eae3c9
PP
825# export man page build condition: build the man pages if the user
826# asked for it, and if the tools are available
827AM_CONDITIONAL([MAN_PAGES_OPT], [test "x$man_pages_opt" != "xno"])
828AM_CONDITIONAL([HAVE_ASCIIDOC_XMLTO], [test "x$have_asciidoc_xmlto" = "xyes"])
829
f9c59cd0
MJ
830AC_DEFINE_UNQUOTED([MANPATH], ["`eval eval echo $mandir`"], [Path to man pages.])
831
4fc83d94
PP
832# embedded --help message
833AC_ARG_ENABLE(
834 [embedded-help],
835 AS_HELP_STRING(
836 [--enable-embedded-help],
837 [Embed the --help messages in the executable files]
838 ),
839 [embedded_help=$enableval],
840 [embedded_help=no]
841)
842AS_IF([test "x$embedded_help" = "xyes"], [
843 AS_IF([test "x$man_pages_opt" = "xno"], [
844 AC_MSG_ERROR([You need the --enable-man-pages option with the --enable-embedded-help option.])
845 ])
dc3c58c9
MJ
846 AC_PATH_PROG([man_prog_path], [man])
847 AS_IF([test "x$man_prog_path" = "x"], [
4fc83d94
PP
848 AC_MSG_ERROR([You need man with the --enable-embedded-help option.])
849 ])
850 AC_DEFINE_UNQUOTED([LTTNG_EMBED_HELP], 1, [Embed --help messages.])
851 AC_SUBST([MANPROG], [$man_prog_path])
852])
853AM_CONDITIONAL([EMBED_HELP], [test "x$embedded_help" != "xno"])
854
9586c198
JR
855# Python agent test
856UST_PYTHON_AGENT="lttngust"
857
858AC_ARG_ENABLE(test-python2-agent,
859 AS_HELP_STRING([--enable-test-python2-agent],
860 [enable tests for python2 agent. Python2 interpreter path can be overridden by setting the PYTHON2 environment variable. Default: Autodetect]
861 ),[:],[test_python2_agent_autodetect=yes]
862)
863
864AC_ARG_ENABLE(test-python3-agent,
865 AS_HELP_STRING([--enable-test-python3-agent],
866 [enable tests for python3 agent. Python3 interpreter path can be overridden by setting the PYTHON3 environment variable. Default: Autodetect]
867 ),[:],[test_python3_agent_autodetect=yes]
868)
869
870AC_ARG_ENABLE(test-python-agent-all,
871 AS_HELP_STRING([--enable-test-python-agent-all],
872 [enable test for all python{2/3} agent.]
873 ),
874)
875
876AS_IF([test ! -z "$enable_test_python_agent_all"], [
877 unset test_python2_agent_autodetect
878 unset test_python3_agent_autodetect
879])
880
881AS_IF([test "x$enable_test_python_agent_all" = "xyes"], [
882 enable_test_python2_agent=yes
883 enable_test_python3_agent=yes
884])
885
886AS_IF([test "x$enable_test_python_agent_all" = "xno"], [
887 enable_test_python2_agent=no
888 enable_test_python3_agent=no
889])
890
891
892AS_IF([test "x$enable_test_python2_agent" = "xyes" -o "x$test_python2_agent_autodetect" = "xyes" ], [
893 AS_IF([test -z "$PYTHON2"], [
894 PYTHON2=python2
895 ], [
896 AC_MSG_WARN([Using user-defined PYTHON2 ($PYTHON2) for lttng-ust python2 agent check])
897 ])
898
899 AC_PATH_PROG([PYTHON2_BIN],[$PYTHON2])
900 AS_IF([test -z "$PYTHON2_BIN"], [
901 AS_IF([test -z "$test_python2_agent_autodetect"],[
902 AC_MSG_ERROR([No python2 interpreter found. PYTHON2 can be set to override default interpreter path])
903 ])
904 ], [
905 AC_MSG_CHECKING([for python2 lttng-ust agent])
906 AS_IF([$PYTHON2_BIN -c "import $UST_PYTHON_AGENT" 2>/dev/null], [
907 PYTHON2_AGENT=$PYTHON2_BIN
908 AC_MSG_RESULT([yes])
909 RUN_PYTHON_AGENT_TEST=yes
910 ], [
911 AC_MSG_RESULT([no])
912 AS_IF([test -z "$test_python2_agent_autodetect"],[
913 AC_MSG_ERROR([No python2 agent found. The path to the agent can be specified by setting the PYTHONPATH environment variable.])
914 ])
915 ])
916
917 ])
918
919])
920
921AS_IF([test "x$enable_test_python3_agent" = "xyes" -o "x$test_python3_agent_autodetect" = "xyes" ], [
922 AS_IF([test -z "$PYTHON3"], [
923 PYTHON3=python3
924 ], [
925 AC_MSG_WARN([Using user-defined PYTHON3 ($PYTHON3) for lttng-ust python3 agent check])
926 ])
927
928 AC_PATH_PROG([PYTHON3_BIN],[$PYTHON3])
929 AS_IF([test -z "$PYTHON3_BIN"], [
930 AS_IF([test -z "$test_python3_agent_autodetect"],[
931 AC_MSG_ERROR([No python3 interpreter found. PYTHON3 can be set to override default interpreter path])
932 ])
933 ], [
934 AC_MSG_CHECKING([for python3 lttng-ust agent])
935 AS_IF([$PYTHON3_BIN -c "import $UST_PYTHON_AGENT" 2>/dev/null], [
936 PYTHON3_AGENT=$PYTHON3_BIN
937 AC_MSG_RESULT([yes])
938 RUN_PYTHON_AGENT_TEST=yes
939 ], [
940 AC_MSG_RESULT([no])
941 AS_IF([test -z "$test_python3_agent_autodetect"],[
942 AC_MSG_ERROR([No python3 agent found. The path to the agent can be specified by setting the PYTHONPATH environment variable.])
943 ])
944 ])
945
946 ])
947])
9586c198
JR
948AC_SUBST([RUN_PYTHON_AGENT_TEST])
949AC_SUBST([PYTHON2_AGENT])
950AC_SUBST([PYTHON3_AGENT])
951
1a1986ce
MJ
952AC_ARG_ENABLE([test-sdt-uprobe],
953 [AS_HELP_STRING([--enable-test-sdt-uprobe], [enable the LTTng UST SDT uprobe tests [default=autodetect]])],
954 [test_sdt_uprobe="$enableval"],
955 [test_sdt_uprobe=autodetect]
956)
957
958AS_IF([test "$test_sdt_uprobe" != "no"], [
959 LTTNG_CHECK_SDT_WORKS
960 AC_PATH_PROG([DTRACE], [dtrace])
961])
962
963AS_IF([test "$test_sdt_uprobe" = "yes"], [
964 AS_IF([test "$lttng_cv_sdt_works" = "no"], [
965 AC_MSG_ERROR([Cannot find 'sys/sdt.h'.])
966 ])
967 AS_IF([test "x$DTRACE" = "x"], [
968 AC_MSG_ERROR([Cannot find SystemTap dtrace. You can set the DTRACE variable to override automatic detection.])
969 ])
970])
971
972AS_IF([test "$test_sdt_uprobe" = "autodetect"], [
973 AS_IF([test "$lttng_cv_sdt_works" = "yes"], [
974 AS_IF([test "x$DTRACE" != "x"], [
975 test_sdt_uprobe=yes
976 ])
977 ])
978])
979
980AM_CONDITIONAL([TEST_SDT_UPROBE], [test "$test_sdt_uprobe" = "yes"])
981
885078d1
CB
982AC_ARG_ENABLE([lib-lttng-ctl], AS_HELP_STRING([--disable-lib-lttng-ctl],
983 [Disable the build of liblttng-ctl (only possible if no binaries that depend on it are built)]))
984
87fb9fc0
JR
985# Arguments for binaries build exclusion
986AC_ARG_ENABLE([bin-lttng], AS_HELP_STRING([--disable-bin-lttng],[Disable the build of lttng binaries]))
987AC_ARG_ENABLE([bin-lttng-consumerd], AS_HELP_STRING([--disable-bin-lttng-consumerd],
988 [Disable the build of lttng-consumerd binaries]))
989AC_ARG_ENABLE([bin-lttng-crash], AS_HELP_STRING([--disable-bin-lttng-crash],[Disable the build of lttng-crash binaries]))
990AC_ARG_ENABLE([bin-lttng-relayd], AS_HELP_STRING([--disable-bin-lttng-relayd],
991 [Disable the build of lttng-relayd binaries]))
992AC_ARG_ENABLE([bin-lttng-sessiond], AS_HELP_STRING([--disable-bin-lttng-sessiond],
993 [Disable the build of lttng-sessiond binaries]))
994AC_ARG_ENABLE([extras], AS_HELP_STRING([--disable-extras],
995 [Disable the build of the extra components]))
996
997
87fb9fc0 998build_lib_consumer=no
87fb9fc0
JR
999build_lib_health=no
1000build_lib_index=no
1001build_lib_kernel_consumer=no
1002build_lib_kernel_ctl=no
1003build_lib_lttng_ctl=no
1004build_lib_relayd=no
1005build_lib_sessiond_comm=no
1006build_lib_testpoint=no
1007build_lib_ust_consumer=no
1008
1009# There is an overlap for enabled dependencies, but this makes everything
1010# simpler. libcommon and libconfig are always compiled so they are not repeated
1011# here.
1012
1013# Enable binary dependencies.
1014AS_IF([test x$enable_bin_lttng != xno],
1015 [
1016 build_lib_lttng_ctl=yes
1017 ]
1018)
1019
1020AS_IF([test x$enable_bin_lttng_consumerd != xno],
1021 [
1022 build_lib_consumer=yes
1023 build_lib_sessiond_comm=yes
1024 build_lib_index=yes
1025 build_lib_health=yes
1026 build_lib_testpoint=yes
1027 ]
1028)
1029
1030AS_IF([test x$enable_bin_lttng_crash != xno],
1031 # Do nothing since libconfig and libcommon are built by default.
1032 []
1033)
1034
1035AS_IF([test x$enable_bin_lttng_relayd != xno],
1036 [
87fb9fc0 1037 build_lib_sessiond_comm=yes
87fb9fc0
JR
1038 build_lib_index=yes
1039 build_lib_health=yes
1040 build_lib_testpoint=yes
1041 ]
1042)
1043AS_IF([test x$enable_bin_lttng_sessiond != xno],
1044 [
1045 build_lib_lttng_ctl=yes
1046 build_lib_sessiond_comm=yes
1047 build_lib_kernel_ctl=yes
87fb9fc0
JR
1048 build_lib_relayd=yes
1049 build_lib_testpoint=yes
1050 build_lib_health=yes
87fb9fc0
JR
1051 ]
1052)
1053
1054# Libraries dependencies enabling
885078d1
CB
1055# If we want to build liblttng-ctl
1056AS_IF([test x$enable_lib_lttng_ctl != xno],
1057 [
1058 build_lib_lttng_ctl=yes
1059 ]
1060)
1061# If we need to build liblttng-ctl because a binary depends on it
87fb9fc0
JR
1062AS_IF([test x$build_lib_lttng_ctl = xyes],
1063 [
1064 build_lib_sessiond_comm=yes
87fb9fc0
JR
1065 ]
1066)
885078d1
CB
1067# Fail if we didn't want to build liblttng-ctl but need to build it anyway
1068AS_IF([test "x$build_lib_lttng_ctl" = "xyes" -a "x$enable_lib_lttng_ctl" = "xno"],[
1069 AC_MSG_FAILURE(
1070 [liblttng-ctl must be built, because at least one binary that depends on it is enabled])
1071])
87fb9fc0
JR
1072
1073AS_IF([test x$build_lib_consumer = xyes],
1074 [
1075 build_lib_sessiond_comm=yes
1076 build_lib_kernel_consumer=yes
87fb9fc0 1077 build_lib_relayd=yes
5744bf89 1078 AS_IF([test "x$with_lttng_ust" = "xyes"], [build_lib_ust_consumer=yes])
87fb9fc0
JR
1079 ]
1080)
1081
1082AS_IF([test x$build_lib_kernel_consumer = xyes],
1083 [
1084 build_lib_kernel_ctl=yes
1085 build_lib_relayd=yes
1086 ]
1087)
1088
1089AS_IF([test x$build_lib_relayd = xyes],
1090 [
1091 build_lib_sessiond_comm=yes
1092 ]
1093)
1094
373148e9
FG
1095# Find arch type
1096AS_CASE([$host_cpu],
1097 [k1om], [ARCHTYPE="x86"],
1098 [i386], [ARCHTYPE="x86"],
1099 [i486], [ARCHTYPE="x86"],
1100 [i586], [ARCHTYPE="x86"],
1101 [i686], [ARCHTYPE="x86"],
1102 [amd64], [ARCHTYPE="x86"],
1103 [x86_64], [ARCHTYPE="x86"],
1104 [powerpc], [ARCHTYPE="ppc"],
1105 [ppc64], [ARCHTYPE="ppc"],
1106 [powerpc64], [ARCHTYPE="ppc"],
1107 [powerpc64le], [ARCHTYPE="ppc"],
1108 [ppc], [ARCHTYPE="ppc"],
1109 [s390], [ARCHTYPE="s390"],
1110 [s390x], [ARCHTYPE="s390"],
1111 [sparc], [ARCHTYPE="sparc64"],
1112 [sparc64], [ARCHTYPE="sparc64"],
1113 [alpha*], [ARCHTYPE="alpha"],
1114 [ia64], [ARCHTYPE="ia64"],
1115 [arm*], [ARCHTYPE="arm"],
1116 [aarch64*], [ARCHTYPE="aarch64"],
1117 [mips*], [ARCHTYPE="mips"],
1118 [nios2*], [ARCHTYPE="nios2"],
1119 [tile*], [ARCHTYPE="tile"],
1120 [hppa*], [ARCHTYPE="hppa"],
1121 [m68k], [ARCHTYPE="m68k"],
1122 [riscv*], [ARCHTYPE="riscv"],
1123 [ARCHTYPE="unknown"]
1124)
1125
1126AC_SUBST(ARCHTYPE)
1127
5dee2ed2
MJ
1128AS_CASE([$host_os],
1129 [linux*], [OSTYPE="linux"],
1130 [freebsd*], [OSTYPE="freebsd"],
1131 [solaris*], [OSTYPE="solaris"],
1132 [cygwin*], [OSTYPE="cygwin"],
1133 [mingw*], [OSTYPE="mingw"],
1134 [OSTYPE="unknown"]
1135)
1136AC_SUBST(OSTYPE)
1137AM_CONDITIONAL([IS_LINUX], [test $OSTYPE = "linux"])
1138
1139
1140
1141# Userspace callstack capture is only supported by the Linux kernel on x86.
373148e9 1142AH_TEMPLATE([HAVE_MODULES_USERSPACE_CALLSTACK_CONTEXT], [Define if you have LTTng-modules userspace callstack tracing support])
5dee2ed2 1143AS_IF([test "x$ARCHTYPE" = "xx86" && test "x$OSTYPE" = "xlinux"],[
373148e9
FG
1144 have_modules_userspace_callstack_context=yes
1145 AC_DEFINE([HAVE_MODULES_USERSPACE_CALLSTACK_CONTEXT], [1])
373148e9 1146])
5dee2ed2 1147AM_CONDITIONAL([HAVE_MODULES_USERSPACE_CALLSTACK_CONTEXT], [test x$have_modules_userspace_callstack_context = xyes])
87fb9fc0
JR
1148
1149# Export binaries build conditions.
1150AM_CONDITIONAL([BUILD_BIN_LTTNG], [test x$enable_bin_lttng != xno])
1151AM_CONDITIONAL([BUILD_BIN_LTTNG_CONSUMERD], [test x$enable_bin_lttng_consumerd != xno])
1152AM_CONDITIONAL([BUILD_BIN_LTTNG_CRASH], [test x$enable_bin_lttng_crash != xno])
1153AM_CONDITIONAL([BUILD_BIN_LTTNG_RELAYD], [test x$enable_bin_lttng_relayd != xno])
1154AM_CONDITIONAL([BUILD_BIN_LTTNG_SESSIOND], [test x$enable_bin_lttng_sessiond != xno])
1155
1156# Export the tests and extras build conditions.
1157AS_IF([\
1158test "x$enable_bin_lttng" != "xno" && \
1159test "x$enable_bin_lttng_consumerd" != "xno" && \
1160test "x$enable_bin_lttng_crash" != "xno" && \
1161test "x$enable_bin_lttng_relayd" != "xno" && \
1162test "x$enable_bin_lttng_sessiond" != "xno"],
1163[build_tests=yes],
1164[build_tests=no]
1165)
1166
1167AM_CONDITIONAL([BUILD_TESTS], [test x$build_tests = xyes])
9f263671
KS
1168
1169AS_IF([test "x$build_tests" = "xyes"],
1170 [
1171 PKG_CHECK_MODULES([babeltrace2], [babeltrace2])
1172 ]
1173)
1174
87fb9fc0
JR
1175AM_CONDITIONAL([BUILD_EXTRAS], [test x$enable_extras != xno])
1176
1177# Export libraries build conditions.
87fb9fc0 1178AM_CONDITIONAL([BUILD_LIB_CONSUMER], [test x$build_lib_consumer = xyes])
87fb9fc0
JR
1179AM_CONDITIONAL([BUILD_LIB_HEALTH], [test x$build_lib_health = xyes])
1180AM_CONDITIONAL([BUILD_LIB_INDEX], [test x$build_lib_index = xyes])
1181AM_CONDITIONAL([BUILD_LIB_KERNEL_CONSUMER], [test x$build_lib_kernel_consumer = xyes])
1182AM_CONDITIONAL([BUILD_LIB_KERNEL_CTL], [test x$build_lib_kernel_ctl = xyes])
1183AM_CONDITIONAL([BUILD_LIB_LTTNG_CTL], [test x$build_lib_lttng_ctl = xyes])
1184AM_CONDITIONAL([BUILD_LIB_RELAYD], [test x$build_lib_relayd = xyes])
1185AM_CONDITIONAL([BUILD_LIB_SESSIOND_COMM], [test x$build_lib_sessiond_comm = xyes])
1186AM_CONDITIONAL([BUILD_LIB_TESTPOINT], [test x$build_lib_testpoint = xyes])
1187AM_CONDITIONAL([BUILD_LIB_UST_CONSUMER], [test x$build_lib_ust_consumer = xyes])
953192ba 1188
4bd69c5f 1189AM_CFLAGS="-fvisibility=hidden $OPT_CFLAGS $WARN_CFLAGS $PTHREAD_CFLAGS"
343af227 1190AC_SUBST(AM_CFLAGS)
6e2d116c 1191
4bd69c5f 1192AM_CXXFLAGS="-fvisibility=hidden -fvisibility-inlines-hidden $OPT_CXXFLAGS $WARN_CXXFLAGS $PTHREAD_CFLAGS"
c30417c1
SM
1193AC_SUBST(AM_CXXFLAGS)
1194
234009e7
SM
1195# This is set even though it is empty, so Makefiles can do "AM_LDFLAGS += ...".
1196AM_LDFLAGS=""
1197AC_SUBST(AM_LDFLAGS)
1198
9aba4735
JR
1199# The order in which the include folders are searched is important.
1200# The top_builddir should always be searched first in the event that a build
1201# time generated file is included. An example of this is the "version.i" file.
1202# In a scenario where lttng-tools is built from a distribution tarball and in a
1203# out-of-tree manner, the generated "version.i" has priority on the one from
1204# the source (distribution tarball) and must be found first.
e4d2f27a 1205AM_CPPFLAGS="-I\$(top_builddir)/include -I\$(top_srcdir)/include -I\$(top_builddir)/src -I\$(top_srcdir)/src -include config.h $AM_CPPFLAGS"
343af227 1206AC_SUBST(AM_CPPFLAGS)
6e2d116c
DG
1207
1208lttngincludedir="${includedir}/lttng"
6e2d116c 1209AC_SUBST(lttngincludedir)
a58c490f
JG
1210
1211lttngactionincludedir="${includedir}/lttng/action"
1212AC_SUBST(lttngactionincludedir)
1213
1214lttngconditionincludedir="${includedir}/lttng/condition"
1215AC_SUBST(lttngconditionincludedir)
1216
1217lttngnotificationincludedir="${includedir}/lttng/notification"
1218AC_SUBST(lttngnotificationincludedir)
1219
1220lttngtriggerincludedir="${includedir}/lttng/trigger"
1221AC_SUBST(lttngtriggerincludedir)
1222
7a3dcaf6
JR
1223lttngeventruleincludedir="${includedir}/lttng/event-rule"
1224AC_SUBST(lttngeventruleincludedir)
1225
386418ba
MD
1226lttnglibexecdir="${libdir}/lttng/libexec"
1227AC_SUBST(lttnglibexecdir)
1228
fac6795d
DG
1229AC_CONFIG_FILES([
1230 Makefile
10a8a223 1231 doc/Makefile
048f01ef
PP
1232 doc/api/Makefile
1233 doc/api/liblttng-ctl/Doxyfile
1234 doc/api/liblttng-ctl/Makefile
595ed92e 1235 doc/examples/Makefile
95ce9d29 1236 doc/examples/rotation/Makefile
595ed92e 1237 doc/examples/trigger-condition-event-matches/Makefile
6991b181 1238 doc/man/Makefile
c4ee4984 1239 doc/man/asciidoc-attrs.conf
fac6795d 1240 include/Makefile
36907cb5
DS
1241 extras/Makefile
1242 extras/bindings/Makefile
1243 extras/bindings/swig/Makefile
1244 extras/bindings/swig/python/Makefile
57f0bd0c 1245 extras/core-handler/Makefile
10a8a223
DG
1246 src/Makefile
1247 src/common/Makefile
10a8a223
DG
1248 src/lib/Makefile
1249 src/lib/lttng-ctl/Makefile
2c452d45 1250 src/lib/lttng-ctl/lttng-ctl.pc
10a8a223
DG
1251 src/bin/Makefile
1252 src/bin/lttng-consumerd/Makefile
1253 src/bin/lttng-sessiond/Makefile
b8aa1682 1254 src/bin/lttng-relayd/Makefile
10a8a223 1255 src/bin/lttng/Makefile
d7ba1388 1256 src/bin/lttng-crash/Makefile
116a02e3
JG
1257 src/vendor/Makefile
1258 src/vendor/msgpack/Makefile
fac6795d 1259 tests/Makefile
512eb148 1260 tests/destructive/Makefile
c1410397 1261 tests/meta/Makefile
9ac429ef
CB
1262 tests/regression/Makefile
1263 tests/regression/kernel/Makefile
1264 tests/regression/tools/Makefile
1265 tests/regression/tools/streaming/Makefile
1266 tests/regression/tools/filtering/Makefile
1267 tests/regression/tools/health/Makefile
d946d662 1268 tests/regression/tools/tracefile-limits/Makefile
07b86b52 1269 tests/regression/tools/snapshots/Makefile
1b368955 1270 tests/regression/tools/live/Makefile
345121ec 1271 tests/regression/tools/exclusion/Makefile
e02b109b 1272 tests/regression/tools/save-load/Makefile
192ac418 1273 tests/regression/tools/save-load/configuration/Makefile
68270f0f 1274 tests/regression/tools/mi/Makefile
075ffe1f 1275 tests/regression/tools/wildcard/Makefile
fbee8987 1276 tests/regression/tools/channel/Makefile
4c80129b 1277 tests/regression/tools/crash/Makefile
eded6438 1278 tests/regression/tools/regen-metadata/Makefile
54cd6107 1279 tests/regression/tools/regen-statedump/Makefile
434f8068 1280 tests/regression/tools/notification/Makefile
09a783a8 1281 tests/regression/tools/rotation/Makefile
2a166864 1282 tests/regression/tools/base-path/Makefile
01654d69 1283 tests/regression/tools/metadata/Makefile
ba5e8d0a 1284 tests/regression/tools/tracker/Makefile
f3630ec4 1285 tests/regression/tools/working-directory/Makefile
a9115ebf 1286 tests/regression/tools/relayd-grouping/Makefile
c28fcefd 1287 tests/regression/tools/clear/Makefile
b4b7369f 1288 tests/regression/tools/trigger/Makefile
7f4d5b07 1289 tests/regression/tools/trigger/rate-policy/Makefile
6ba31891
FD
1290 tests/regression/tools/trigger/start-stop/Makefile
1291 tests/regression/tools/trigger/utils/Makefile
2d0e6286 1292 tests/regression/tools/trigger/name/Makefile
1cc00241 1293 tests/regression/tools/trigger/hidden/Makefile
ef945e4d 1294 tests/regression/tools/context/Makefile
b9780062 1295 tests/regression/tools/client/Makefile
9ac429ef
CB
1296 tests/regression/ust/Makefile
1297 tests/regression/ust/nprocesses/Makefile
1298 tests/regression/ust/high-throughput/Makefile
1299 tests/regression/ust/low-throughput/Makefile
1300 tests/regression/ust/before-after/Makefile
f5481aa9 1301 tests/regression/ust/buffers-pid/Makefile
a788a3ed 1302 tests/regression/ust/periodical-metadata-flush/Makefile
9ac429ef 1303 tests/regression/ust/multi-session/Makefile
3f7f208a 1304 tests/regression/ust/multi-lib/Makefile
9ac429ef
CB
1305 tests/regression/ust/overlap/Makefile
1306 tests/regression/ust/overlap/demo/Makefile
91c75285 1307 tests/regression/ust/linking/Makefile
43c28d50 1308 tests/regression/ust/daemon/Makefile
ee28adfb 1309 tests/regression/ust/exit-fast/Makefile
37bd6c8e 1310 tests/regression/ust/fork/Makefile
5836cdc2 1311 tests/regression/ust/libc-wrapper/Makefile
d4f53cc3 1312 tests/regression/ust/baddr-statedump/Makefile
c70c42cc 1313 tests/regression/ust/ust-dl/Makefile
37175ce4 1314 tests/regression/ust/java-jul/Makefile
504d4ace 1315 tests/regression/ust/java-log4j/Makefile
0fd2fd15 1316 tests/regression/ust/java-log4j2/Makefile
568d7e2d 1317 tests/regression/ust/getcpu-override/Makefile
199800b2 1318 tests/regression/ust/clock-override/Makefile
10b56aef 1319 tests/regression/ust/type-declarations/Makefile
ced06804 1320 tests/regression/ust/rotation-destroy-flush/Makefile
de7e372e 1321 tests/regression/ust/blocking/Makefile
bbf15743 1322 tests/regression/ust/namespaces/Makefile
da1e97c9 1323 tests/regression/ust/ust-constructor/Makefile
605ac758 1324 tests/stress/Makefile
81d029da 1325 tests/unit/Makefile
1501a7f3 1326 tests/unit/ini_config/Makefile
6faa26ca 1327 tests/perf/Makefile
86a96e6c 1328 tests/utils/Makefile
9f263671
KS
1329 tests/utils/bt2_plugins/Makefile
1330 tests/utils/bt2_plugins/event_name/Makefile
1331 tests/utils/bt2_plugins/field_stats/Makefile
ef945e4d 1332 tests/utils/lttngtest/Makefile
86a96e6c 1333 tests/utils/tap/Makefile
7e0cc23b 1334 tests/utils/testapp/Makefile
f0a9c004 1335 tests/utils/testapp/gen-data-pending/Makefile
5f0d4e78 1336 tests/utils/testapp/gen-ns-events/Makefile
ba5e8d0a 1337 tests/utils/testapp/gen-kernel-test-events/Makefile
eb7277b0 1338 tests/utils/testapp/gen-py-events/Makefile
7e0cc23b 1339 tests/utils/testapp/gen-ust-events/Makefile
a4cc1b1f 1340 tests/utils/testapp/gen-ust-events-constructor/Makefile
8a558304 1341 tests/utils/testapp/gen-ust-events-ns/Makefile
591ee332 1342 tests/utils/testapp/gen-syscall-events-callstack/Makefile
ffb08a8c 1343 tests/utils/testapp/gen-ust-nevents/Makefile
5400d18f 1344 tests/utils/testapp/gen-ust-nevents-str/Makefile
030312cf 1345 tests/utils/testapp/gen-syscall-events/Makefile
b02dcdb8 1346 tests/utils/testapp/gen-ust-tracef/Makefile
a9c2df2b
FD
1347 tests/utils/testapp/userspace-probe-elf-binary/Makefile
1348 tests/utils/testapp/userspace-probe-elf-cxx-binary/Makefile
1349 tests/utils/testapp/userspace-probe-sdt-binary/Makefile
208e4eea 1350 tests/utils/xml-utils/Makefile
fac6795d
DG
1351])
1352
87fb9fc0 1353# Inject variable into python test script.
9586c198 1354AC_CONFIG_FILES([tests/regression/ust/python-logging/test_python_logging],[chmod +x tests/regression/ust/python-logging/test_python_logging])
6faa26ca
JD
1355# Inject LTTNG_TOOLS_BUILD_WITH_LIBPFM variable in test script.
1356AC_CONFIG_FILES([tests/perf/test_perf_raw],[chmod +x tests/perf/test_perf_raw])
bc1d8ca0 1357AC_CONFIG_FILES([tests/regression/ust/ust-dl/test_ust-dl],[chmod +x tests/regression/ust/ust-dl/test_ust-dl])
77503fc5 1358AC_CONFIG_FILES([pre-inst-env],[chmod +x pre-inst-env])
9586c198 1359
fac6795d 1360AC_OUTPUT
6299f964 1361
994dd8a4 1362#
87fb9fc0 1363# Mini-report on what will be built.
994dd8a4 1364#
994dd8a4 1365
9d8c7763
JG
1366PPRINT_INIT
1367PPRINT_SET_INDENT(1)
1368PPRINT_SET_TS(38)
1369
1370AS_ECHO
1371AS_ECHO("${PPRINT_COLOR_BLDBLU}LTTng-tools $PACKAGE_VERSION \"$version_name\"$PPRINT_COLOR_RST")
1372AS_ECHO
1373
1374AS_IF([test -n "$report_fold"], [
1375 AS_ECHO("`AS_ECHO("$version_description") | $report_fold -s`")
1376], [
1377 AS_ECHO("$version_description")
1378])
0e4cbe7e 1379
9d8c7763
JG
1380AS_ECHO
1381PPRINT_SUBTITLE([Features])
0e4cbe7e 1382
87fb9fc0 1383# Target architecture we're building for.
2d90c6c8 1384target_arch=$host_cpu
994dd8a4
AM
1385[
1386for f in $CFLAGS; do
1387 if test $f = "-m32"; then
1388 target_arch="32-bit"
1389 elif test $f = "-m64"; then
1390 target_arch="64-bit"
1391 fi
1392done
1393]
9d8c7763 1394PPRINT_PROP_STRING([Target architecture], $target_arch)
994dd8a4 1395
234170ac 1396# kmod enabled/disabled
83dcc026 1397test "x$with_kmod" != "xno" && value=1 || value=0
9d8c7763 1398PPRINT_PROP_BOOL([libkmod support], $value)
234170ac 1399
994dd8a4 1400# LTTng-UST enabled/disabled
5744bf89 1401test "x$with_lttng_ust" = "xyes" && value=1 || value=0
9d8c7763 1402PPRINT_PROP_BOOL([LTTng-UST support], $value)
55bed213 1403
885078d1
CB
1404AS_ECHO
1405PPRINT_SUBTITLE([Libraries])
1406
1407# liblttng-ctl enabled/disabled
1408test x$build_lib_lttng_ctl != xno && value=1 || value=0
1409PPRINT_PROP_BOOL([liblttng-ctl], $value)
1410
9d8c7763
JG
1411AS_ECHO
1412PPRINT_SUBTITLE([Binaries])
87fb9fc0
JR
1413
1414# List binaries to be built
9d8c7763
JG
1415test x$enable_bin_lttng != xno && value=1 || value=0
1416PPRINT_PROP_BOOL([lttng], $value)
87fb9fc0 1417
9d8c7763
JG
1418test x$enable_bin_lttng_consumerd != xno && value=1 || value=0
1419PPRINT_PROP_BOOL([lttng-consumerd], $value)
87fb9fc0 1420
9d8c7763
JG
1421test x$enable_bin_lttng_crash != xno && value=1 || value=0
1422PPRINT_PROP_BOOL([lttng-crash], $value)
87fb9fc0 1423
9d8c7763
JG
1424test x$enable_bin_lttng_relayd != xno && value=1 || value=0
1425PPRINT_PROP_BOOL([lttng-relayd], $value)
87fb9fc0 1426
9d8c7763
JG
1427test x$enable_bin_lttng_sessiond != xno && value=1 || value=0
1428PPRINT_PROP_BOOL([lttng-sessiond], $value)
87fb9fc0 1429
9d8c7763
JG
1430# Extras
1431test x$enable_extras != xno && value=1 || value=0
1432AS_ECHO
1433PPRINT_SET_INDENT(0)
1434PPRINT_PROP_BOOL([Extras], $value, $PPRINT_COLOR_SUBTITLE)
1435PPRINT_SET_INDENT(1)
87fb9fc0 1436
9d8c7763
JG
1437AS_ECHO
1438PPRINT_SUBTITLE([Tests])
87fb9fc0
JR
1439
1440# Print clear message that tests won't be built
1441AS_IF([test "x$build_tests" = "xno"],[
9d8c7763 1442 PPRINT_WARN([Tests won't be built since some binaries were disabled])
87fb9fc0
JR
1443])
1444
839a9569 1445# LTTng UST Java agent JUL tests enabled/disabled
9d8c7763
JG
1446test "x$test_java_agent_jul" = "xyes" && value=1 || value=0
1447PPRINT_PROP_BOOL([LTTng-UST Java agent JUL tests], $value)
839a9569 1448
0fd2fd15 1449# LTTng UST Java agent Log4j 1.x tests enabled/disabled
9d8c7763 1450test "x$test_java_agent_log4j" = "xyes" && value=1 || value=0
0fd2fd15
MJ
1451PPRINT_PROP_BOOL([LTTng-UST Java agent Log4j 1.x tests], $value)
1452
1453# LTTng UST Java agent Log4j 2.x tests enabled/disabled
1454test "x$test_java_agent_log4j2" = "xyes" && value=1 || value=0
1455PPRINT_PROP_BOOL([LTTng-UST Java agent Log4j 2.x tests], $value)
839a9569 1456
9d8c7763
JG
1457test ! -z "$PYTHON2_AGENT" && value=1 || value=0
1458PPRINT_PROP_BOOL([LTTng-UST Python2 agent tests], $value)
9586c198 1459
9d8c7763
JG
1460test ! -z "$PYTHON3_AGENT" && value=1 || value=0
1461PPRINT_PROP_BOOL([LTTng-UST Python3 agent tests], $value)
008559fa 1462
c9a0fa95 1463# userspace-probe SDT instrumentation tests enabled/disabled
1a1986ce 1464test "x$test_sdt_uprobe" = "xyes" && value=1 || value=0
c9a0fa95 1465PPRINT_PROP_BOOL([LTTng-modules SDT uprobe tests], $value)
1a1986ce 1466
36907cb5 1467#Python binding enabled/disabled
e9c45a26 1468test "x$enable_python_binding" = xyes && value=1 || value=0
9d8c7763
JG
1469AS_ECHO
1470PPRINT_SET_INDENT(0)
1471PPRINT_PROP_BOOL([Python binding], $value, $PPRINT_COLOR_SUBTITLE)
008559fa
PP
1472
1473# man pages build enabled/disabled
a3eae3c9
PP
1474m4_pushdef([build_man_pages_msg], [Build and install man pages])
1475
1476AS_IF([test "x$man_pages_opt" != "xno"], [
008559fa 1477 AS_IF([test "x$in_git_repo" = "xyes"], [
a3eae3c9 1478 PPRINT_PROP_BOOL([build_man_pages_msg], 1, $PPRINT_COLOR_SUBTITLE)
008559fa 1479 ], [
a3eae3c9
PP
1480 AS_IF([test "x$have_asciidoc_xmlto" = "xyes"], [
1481 PPRINT_PROP_BOOL([build_man_pages_msg], 1, $PPRINT_COLOR_SUBTITLE)
1482 ], [
1483 PPRINT_PROP_STRING([build_man_pages_msg],
1484 [${PPRINT_COLOR_BLDGRN}yes (already built)],
1485 $PPRINT_COLOR_SUBTITLE)
1486 ])
008559fa 1487 ])
a3eae3c9
PP
1488], [
1489 PPRINT_PROP_BOOL([build_man_pages_msg], 0, $PPRINT_COLOR_SUBTITLE)
008559fa
PP
1490])
1491
a3eae3c9
PP
1492m4_popdef([build_man_pages_msg])
1493
4fc83d94
PP
1494test "x$embedded_help" = xyes && value=1 || value=0
1495PPRINT_PROP_BOOL([Embed --help messages], $value, $PPRINT_COLOR_SUBTITLE)
1496
048f01ef
PP
1497test "x$api_doc" = xyes && value=1 || value=0
1498PPRINT_PROP_BOOL([liblttng-ctl HTML API documentation], $value, $PPRINT_COLOR_SUBTITLE)
1499
a3eae3c9 1500PPRINT_SET_INDENT(1)
008559fa 1501
9d8c7763
JG
1502report_bindir="`eval eval echo $bindir`"
1503report_libdir="`eval eval echo $libdir`"
1504
1505# Print the bindir and libdir this `make install' will install into.
1506AS_ECHO
1507PPRINT_SUBTITLE([Install directories])
1508PPRINT_PROP_STRING([Binaries], [$report_bindir])
1509PPRINT_PROP_STRING([Libraries], [$report_libdir])
1510
1511AS_ECHO
1512PPRINT_SUBTITLE([Search directories])
008559fa
PP
1513
1514# If we build the sessiond, print the paths it will use
4601fcce 1515AS_IF([test "$SESSIOND_BIN" = ""],[
9d8c7763 1516 path="$report_bindir/lttng-sessiond"
4601fcce 1517],[
9d8c7763 1518 path="$SESSIOND_BIN"
4601fcce 1519])
9d8c7763 1520PPRINT_PROP_STRING([lttng-sessiond executable], [$path])
b8ec3da8 1521
4601fcce 1522AS_IF([test "$CONSUMERD32_BIN" = ""],[
9d8c7763 1523 path="`eval eval echo $lttnglibexecdir`/lttng-consumerd"
4601fcce 1524],[
9d8c7763 1525 path="$CONSUMERD32_BIN"
4601fcce 1526])
9d8c7763 1527PPRINT_PROP_STRING([32-bit lttng-consumerd executable], [$path])
994dd8a4 1528
4601fcce 1529AS_IF([test "$CONSUMERD32_LIBDIR" = ""],[
9d8c7763 1530 path="`eval eval echo $libdir`"
4601fcce 1531],[
9d8c7763 1532 path="$CONSUMERD32_LIBDIR"
4601fcce 1533])
9d8c7763 1534PPRINT_PROP_STRING([32-bit consumer libraries], [$path])
994dd8a4 1535
4601fcce 1536AS_IF([test "$CONSUMERD64_BIN" = ""],[
9d8c7763 1537 path="`eval eval echo $lttnglibexecdir`/lttng-consumerd"
4601fcce 1538],[
9d8c7763 1539 path="$CONSUMERD64_BIN"
4601fcce 1540])
9d8c7763 1541PPRINT_PROP_STRING([64-bit lttng-consumerd executable], [$path])
994dd8a4 1542
4601fcce 1543AS_IF([test "$CONSUMERD64_LIBDIR" = ""],[
9d8c7763 1544 path="`eval eval echo $libdir`"
4601fcce 1545],[
9d8c7763 1546 path="$CONSUMERD64_LIBDIR"
994dd8a4 1547])
9d8c7763 1548PPRINT_PROP_STRING([64-bit consumer libraries], [$path])
a24d43ae
PP
1549PPRINT_SET_INDENT(0)
1550
1551AS_IF([test "x$warn_prebuilt_man_pages" = "xyes" ], [
1552 AS_ECHO
1553 PPRINT_WARN([You need asciidoc and xmlto to build the LTTng-tools man pages.
1554
1555Note that the man pages are already built in this distribution tarball,
1556therefore asciidoc and xmlto are only needed if you intend to modify
1557their sources.
1558
1559Also note that the installed man pages will contain the project's
1560default command-line option and environment variable values.
1561
1562Use --disable-man-pages to completely disable building and installing
1563the man pages.])
1564])
This page took 0.157859 seconds and 4 git commands to generate.