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