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