Cleanup: remove duplicated pthread detection code
[lttng-tools.git] / configure.ac
CommitLineData
5d5baaa3 1AC_PREREQ([2.64])
c87163ac 2AC_INIT([lttng-tools],[2.10.0-rc1],[jeremie.galarneau@efficios.com],[],[https://lttng.org])
b7d2e95f
MJ
3
4AC_CONFIG_HEADERS([include/config.h])
fac6795d 5AC_CONFIG_AUX_DIR([config])
b7d2e95f
MJ
6AC_CONFIG_MACRO_DIR([m4])
7
6e2d116c
DG
8AC_CANONICAL_TARGET
9AC_CANONICAL_HOST
b7d2e95f 10
87e96404 11AM_INIT_AUTOMAKE([foreign dist-bzip2 no-dist-gzip tar-pax nostdinc])
d34cd287 12AM_MAINTAINER_MODE([enable])
b7d2e95f
MJ
13
14# Enable silent rules if available (Introduced in AM 1.11)
c615ee2f 15m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
fac6795d 16
a36b26b4
MJ
17AC_REQUIRE_AUX_FILE([tap-driver.sh])
18
b7d2e95f
MJ
19# Checks for C compiler
20AC_USE_SYSTEM_EXTENSIONS
21AC_SYS_LARGEFILE
22AC_PROG_CC
23AC_PROG_CC_STDC
24
25# Checks for programs.
26AC_PROG_GREP
b7d2e95f 27AC_PROG_MAKE_SET
81265501 28AC_PROG_SED
6ce30613 29AC_PATH_PROG([report_fold], [fold])
b7d2e95f
MJ
30LT_INIT
31
65385a82 32# Check for objcopy, required by the base address statedump and dynamic linker tests
6ce30613
MJ
33AC_CHECK_TOOL([OBJCOPY], [objcopy], [no])
34AS_IF([test "x$OBJCOPY" = "xno"],
35 [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
36)
37AM_CONDITIONAL([HAVE_OBJCOPY], [test "x$OBJCOPY" != xno])
38
6ce30613
MJ
39# check for pgrep
40AC_PATH_PROG([PGREP], [pgrep], [no])
41AM_CONDITIONAL([HAVE_PGREP], [test "x$PGREP" != "xno"])
42
43# check for bison
44AC_PROG_YACC
45BISON=$YACC
46AX_PROG_BISON_VERSION([2.4], [have_bison=yes])
47
48AS_IF([test "x$have_bison" != "xyes"], [
49 AS_IF([test "x$in_git_repo" = "xyes"], [
50 AC_MSG_FAILURE([
51Bison >= 2.4 is required when building from the Git repository. You can
52set the YACC variable to override automatic detection.
53 ])
54 ], [
55 AC_MSG_WARN([
56Missing Bison >= 2.4. Note that the parser files are already built in
57this distribution tarball, so Bison is only needed if you intend to
58modify their sources. You can set the YACC variable to override automatic
59detection.
60 ])
61 ])
62])
63AM_CONDITIONAL([HAVE_BISON], [test "x$have_bison" = "xyes"])
64
65# check for flex
66AC_PROG_LEX
67FLEX=$LEX
68AX_PROG_FLEX_VERSION([2.5.35], [have_flex=yes])
69
70AS_IF([test "x$have_flex" != "xyes"], [
71 AS_IF([test "x$in_git_repo" = "xyes"], [
72 AC_MSG_FAILURE([
73Flex >= 2.5.35 is required when building from the Git repository. You can
74set the LEX variable to override automatic detection.
75 ])
76 ], [
77 AC_MSG_WARN([
78Missing Flex >= 2.5.35. Note that the lexer files are already built in
79this distribution tarball, so Flex is only needed if you intend to
80modify their sources. You can set the LEX variable to override automatic
81detection.
82 ])
83 ])
84])
85AM_CONDITIONAL([HAVE_FLEX], [test "x$have_flex" = "xyes"])
86
87
b7d2e95f
MJ
88# Checks for typedefs, structures, and compiler characteristics.
89AC_C_INLINE
90AC_TYPE_INT32_T
91AC_TYPE_INT64_T
92AC_TYPE_MODE_T
93AC_TYPE_OFF_T
94AC_TYPE_PID_T
95AC_TYPE_SIZE_T
96AC_TYPE_SSIZE_T
97AC_TYPE_UID_T
98AC_TYPE_UINT16_T
99AC_TYPE_UINT32_T
100AC_TYPE_UINT64_T
101AC_TYPE_UINT8_T
102
103AX_C___ATTRIBUTE__
104AS_IF([test "x$ax_cv___attribute__" = "xyes"],
105 [:],
106 [AC_MSG_ERROR([The compiler does not support __attribute__ extensions])])
107
108AX_PTHREAD(,[AC_MSG_ERROR([Could not configure pthreads support])])
b7d2e95f 109
507af6fc
MJ
110AX_LIB_SOCKET_NSL
111
d30b2041
MJ
112LT_NO_UNDEFINED=""
113AS_CASE([$host_os],
114 [cygwin*],
115 [
116 LT_NO_UNDEFINED="-no-undefined"
117 ]
118)
119
120AC_SUBST(LT_NO_UNDEFINED)
121
b7d2e95f 122# Compute minor/major/patchlevel version numbers
18ecc6ae
MJ
123major_version=$(echo AC_PACKAGE_VERSION | $SED 's/^\([[0-9]]\)*\.[[0-9]]*\.[[0-9]]*.*$/\1/')
124minor_version=$(echo AC_PACKAGE_VERSION | $SED 's/^[[0-9]]*\.\([[0-9]]*\)\.[[0-9]]*.*$/\1/')
125patchlevel_version=$(echo AC_PACKAGE_VERSION | $SED 's/^[[0-9]]*\.[[0-9]]*\.\([[0-9]]*\).*$/\1/')
9d8c7763 126
81265501
MD
127AC_SUBST([MAJOR_VERSION], [$major_version])
128AC_SUBST([MINOR_VERSION], [$minor_version])
129AC_SUBST([PATCHLEVEL_VERSION], [$patchlevel_version])
8eaee515
DG
130AC_DEFINE_UNQUOTED([VERSION_MAJOR], $major_version, [LTTng-Tools major version number])
131AC_DEFINE_UNQUOTED([VERSION_MINOR], $minor_version, [LTTng-Tools minor version number])
132AC_DEFINE_UNQUOTED([VERSION_PATCHLEVEL], $patchlevel_version, [LTTng-Tools patchlevel version number])
81265501 133
b85fddf7
JG
134version_name="KeKriek"
135version_description='From Brasserie Dunham, a sour mashed golden wheat ale fermented with local sour cherries from Tougas orchards. Fresh sweet cherry notes with some tartness, lively carbonation with a dry finish.'
18ecc6ae 136version_description_c=$(echo $version_description | $SED 's/"/\\"/g')
0e4cbe7e
DG
137
138AC_DEFINE_UNQUOTED([VERSION_NAME], ["$version_name"], "")
34f69498 139AC_DEFINE_UNQUOTED([VERSION_DESCRIPTION], ["$version_description_c"], "")
c6d4a597 140
6bd5984c
CB
141# libtool link_all_deplibs fixup. See http://bugs.lttng.org/issues/321.
142AC_ARG_ENABLE(libtool-linkdep-fixup,
143 AS_HELP_STRING([--disable-libtool-linkdep-fixup],
144 [disable the libtool fixup for linking all dependent libraries (link_all_deplibs)]),
145 libtool_fixup=$enableval,
146 libtool_fixup=yes)
147
148AS_IF([test "x$libtool_fixup" = "xyes"],
149 [
b7d2e95f 150 libtool_m4="$srcdir/m4/libtool.m4"
6bd5984c
CB
151 libtool_flag_pattern=".*link_all_deplibs\s*,\s*\$1\s*)"
152 AC_MSG_CHECKING([for occurence(s) of link_all_deplibs = no in $libtool_m4])
18ecc6ae 153 libtool_flag_pattern_count=$($GREP -c "$libtool_flag_pattern\s*=\s*no" $libtool_m4)
6bd5984c
CB
154 AS_IF([test $libtool_flag_pattern_count -ne 0],
155 [
156 AC_MSG_RESULT([$libtool_flag_pattern_count])
157 AC_MSG_WARN([the detected libtool will not link all dependencies, forcing link_all_deplibs = unknown])
06884be1 158 $SED -i "s/\($libtool_flag_pattern\)\s*=\s*no/\1=unknown/g" $libtool_m4
6bd5984c
CB
159 ],
160 [
161 AC_MSG_RESULT([none])
162 ])
163 ])
164
347e0f14
CB
165AM_CONDITIONAL([NO_SHARED], [test x$enable_shared = xno])
166
fac6795d
DG
167AC_CHECK_HEADERS([ \
168 sys/types.h unistd.h fcntl.h string.h pthread.h limits.h \
169 signal.h stdlib.h sys/un.h sys/socket.h stdlib.h stdio.h \
d23e7e44
JR
170 getopt.h sys/ipc.h sys/shm.h popt.h grp.h arpa/inet.h \
171 netdb.h netinet/in.h paths.h stddef.h sys/file.h sys/ioctl.h \
172 sys/mount.h sys/param.h sys/time.h
fac6795d
DG
173])
174
b89ff596
JR
175# Basic functions check
176AC_CHECK_FUNCS([ \
afc5df03 177 atexit bzero clock_gettime dup2 fdatasync fls ftruncate \
b89ff596
JR
178 gethostbyname gethostname getpagesize localtime_r memchr memset \
179 mkdir munmap putenv realpath rmdir socket strchr strcspn strdup \
f5436bfc 180 strncasecmp strndup strnlen strpbrk strrchr strstr strtol strtoul \
062fc3d8 181 strtoull dirfd gethostbyname2 getipnodebyname epoll_create1 \
510ece3f 182 sched_getcpu sysconf sync_file_range
b89ff596 183])
7d617f1d 184
fbc08f38
MJ
185# Check if clock_gettime, timer_create, timer_settime, and timer_delete are available in lib rt, and if so,
186# add -lrt to LIBS
187AC_CHECK_LIB([rt], [clock_gettime, timer_create, timer_settime, timer_delete])
188
0c95f5b2
DG
189# Babeltrace viewer check
190AC_ARG_WITH([babeltrace-bin],
191 AS_HELP_STRING([--with-babeltrace-bin],
192 [Location of the babeltrace viewer executable (including the filename)]),
193 [BABELTRACE_BIN="$withval"],
194 [BABELTRACE_BIN=''])
195AC_SUBST([BABELTRACE_BIN])
196
197# lttv-gui
198AC_ARG_WITH([lttv-gui-bin],
199 AS_HELP_STRING([--with-lttv-gui-bin],
200 [Location of the lttv GUI viewer executable (including the filename)]),
201 [LTTV_GUI_BIN="$withval"],
202 [LTTV_GUI_BIN=''])
203AC_SUBST([LTTV_GUI_BIN])
204
fc7a59ce
AM
205AC_ARG_WITH([consumerd32-bin],
206 AS_HELP_STRING([--with-consumerd32-bin],
207 [Location of the 32-bit consumerd executable (including the filename)]),
208 [CONSUMERD32_BIN="$withval"],
209 [CONSUMERD32_BIN=''])
210AC_SUBST([CONSUMERD32_BIN])
ebaeda94 211
fc7a59ce
AM
212AC_ARG_WITH([consumerd64-bin],
213 AS_HELP_STRING([--with-consumerd64-bin],
214 [Location of the 64-bit consumerd executable (including the filename)]),
215 [CONSUMERD64_BIN="$withval"],
216 [CONSUMERD64_BIN=''])
217AC_SUBST([CONSUMERD64_BIN])
ebaeda94
MD
218
219AC_ARG_WITH([consumerd32-libdir],
a4b279ba 220 AS_HELP_STRING([--with-consumerd32-libdir],
fc7a59ce 221 [Directory containing the 32-bit consumerd libraries]),
ebaeda94
MD
222 [CONSUMERD32_LIBDIR="$withval"],
223 [CONSUMERD32_LIBDIR=''])
224AC_SUBST([CONSUMERD32_LIBDIR])
225
ec029701 226AC_ARG_WITH([consumerd64-libdir],
a4b279ba 227 AS_HELP_STRING([--with-consumerd64-libdir],
fc7a59ce 228 [Directory containing the 64-bit consumerd libraries]),
ebaeda94
MD
229 [CONSUMERD64_LIBDIR="$withval"],
230 [CONSUMERD64_LIBDIR=''])
231AC_SUBST([CONSUMERD64_LIBDIR])
232
b8ec3da8
SM
233AC_ARG_WITH([sessiond-bin],
234 AS_HELP_STRING([--with-sessiond-bin],
235 [Location of the sessiond executable (including the filename)]),
236 [SESSIOND_BIN="$withval"],
237 [SESSIOND_BIN=''])
238AC_SUBST([SESSIOND_BIN])
239
d386c872
MD
240AC_ARG_WITH([lttng-system-rundir],
241 AS_HELP_STRING([--with-lttng-system-rundir],
242 [Location of the system directory where the system-wide lttng-sessiond runtime files are kept. The default is "/var/run/lttng".]),
243 [LTTNG_SYSTEM_RUNDIR="$withval"],
244 [LTTNG_SYSTEM_RUNDIR="/var/run/lttng"])
245AC_SUBST([LTTNG_SYSTEM_RUNDIR])
246
839a9569
MJ
247AC_ARG_ENABLE([test-java-agent-jul],
248 [AS_HELP_STRING([--enable-test-java-agent-jul],[enable the LTTng UST Java agent JUL tests [default=no]])],
249 [test_java_agent_jul=$enableval],
250 [test_java_agent_jul=no]
251)
252
253AC_ARG_ENABLE([test-java-agent-log4j],
254 [AS_HELP_STRING([--enable-test-java-agent-log4j],[enable the LTTng UST Java agent Log4j tests [default=no]])],
255 [test_java_agent_log4j=$enableval],
256 [test_java_agent_log4j=no]
257)
258
259AC_ARG_ENABLE([test-java-agent-all],
260 [AS_HELP_STRING([--enable-test-java-agent-all],[enable all the LTTng UST Java agent tests [default=no]])],
261 [test_java_agent_jul=$enableval
262 test_java_agent_log4j=$enableval],
263 [:]
264)
265
fb6f1fa2
YB
266AC_DEFINE_UNQUOTED([CONFIG_CONSUMERD32_BIN], "$CONSUMERD32_BIN", [Location of the 32-bit consumerd executable.])
267AC_DEFINE_UNQUOTED([CONFIG_CONSUMERD64_BIN], "$CONSUMERD64_BIN", [Location of the 64-bit consumerd executable])
268AC_DEFINE_UNQUOTED([CONFIG_CONSUMERD32_LIBDIR], "$CONSUMERD32_LIBDIR", [Search for consumerd 32-bit libraries in this location.])
269AC_DEFINE_UNQUOTED([CONFIG_CONSUMERD64_LIBDIR], "$CONSUMERD64_LIBDIR", [Search for consumerd 64-bit libraries in this location.])
0c95f5b2
DG
270AC_DEFINE_UNQUOTED([CONFIG_BABELTRACE_BIN], "$BABELTRACE_BIN", [Location of the babeltrace viewer executable.])
271AC_DEFINE_UNQUOTED([CONFIG_LTTV_GUI_BIN], "$LTTV_GUI_BIN", [Location of the lttv GUI viewer executable.])
b8ec3da8 272AC_DEFINE_UNQUOTED([CONFIG_SESSIOND_BIN], "$SESSIOND_BIN", [Location of the sessiond executable.])
d386c872 273AC_DEFINE_UNQUOTED([CONFIG_LTTNG_SYSTEM_RUNDIR], ["$LTTNG_SYSTEM_RUNDIR"], [LTTng system runtime directory])
43cadc7e 274
7659d490
PP
275AC_DEFUN([_AC_DEFINE_AND_SUBST], [
276 AC_DEFINE_UNQUOTED([CONFIG_$1], [$2], [$1])
277 $1="$2"
278 AC_SUBST([$1])
279])
280
281AC_DEFUN([_AC_DEFINE_QUOTED_AND_SUBST], [
282 AC_DEFINE_UNQUOTED([CONFIG_$1], ["$2"], [$1])
283 $1="$2"
284 AC_SUBST([$1])
285])
286
287# Default values
c9eb1ddc 288m4_define([_DEFAULT_CHANNEL_SUBBUF_SIZE], [16384])
7659d490
PP
289m4_define([_DEFAULT_CHANNEL_SUBBUF_NUM], [4])
290m4_define([_DEFAULT_CHANNEL_SWITCH_TIMER], [0])
291m4_define([_DEFAULT_CHANNEL_LIVE_TIMER], [0])
292m4_define([_DEFAULT_CHANNEL_READ_TIMER], [200000])
e9404c27 293m4_define([_DEFAULT_CHANNEL_MONITOR_TIMER], [1000000])
7659d490
PP
294_AC_DEFINE_AND_SUBST([DEFAULT_AGENT_TCP_PORT], [5345])
295_AC_DEFINE_AND_SUBST([DEFAULT_APP_SOCKET_RW_TIMEOUT], [5])
296_AC_DEFINE_AND_SUBST([DEFAULT_CHANNEL_SUBBUF_SIZE], [_DEFAULT_CHANNEL_SUBBUF_SIZE])
297_AC_DEFINE_AND_SUBST([DEFAULT_CHANNEL_TRACEFILE_COUNT], [0])
298_AC_DEFINE_AND_SUBST([DEFAULT_CHANNEL_TRACEFILE_SIZE], [0])
299_AC_DEFINE_AND_SUBST([DEFAULT_KERNEL_CHANNEL_LIVE_TIMER], [_DEFAULT_CHANNEL_LIVE_TIMER])
300_AC_DEFINE_AND_SUBST([DEFAULT_KERNEL_CHANNEL_READ_TIMER], [_DEFAULT_CHANNEL_READ_TIMER])
301_AC_DEFINE_AND_SUBST([DEFAULT_KERNEL_CHANNEL_SUBBUF_NUM], [_DEFAULT_CHANNEL_SUBBUF_NUM])
c9eb1ddc 302_AC_DEFINE_AND_SUBST([DEFAULT_KERNEL_CHANNEL_SUBBUF_SIZE], [1048576])
7659d490 303_AC_DEFINE_AND_SUBST([DEFAULT_KERNEL_CHANNEL_SWITCH_TIMER], [_DEFAULT_CHANNEL_SWITCH_TIMER])
e9404c27 304_AC_DEFINE_AND_SUBST([DEFAULT_KERNEL_CHANNEL_MONITOR_TIMER], [_DEFAULT_CHANNEL_MONITOR_TIMER])
7659d490
PP
305_AC_DEFINE_AND_SUBST([DEFAULT_LTTNG_LIVE_TIMER], [1000000])
306_AC_DEFINE_AND_SUBST([DEFAULT_METADATA_CACHE_SIZE], [4096])
307_AC_DEFINE_AND_SUBST([DEFAULT_METADATA_READ_TIMER], [0])
308_AC_DEFINE_AND_SUBST([DEFAULT_METADATA_SUBBUF_NUM], [2])
309_AC_DEFINE_AND_SUBST([DEFAULT_METADATA_SUBBUF_SIZE], [4096])
310_AC_DEFINE_AND_SUBST([DEFAULT_METADATA_SWITCH_TIMER], [_DEFAULT_CHANNEL_SWITCH_TIMER])
311_AC_DEFINE_AND_SUBST([DEFAULT_NETWORK_CONTROL_PORT], [5342])
312_AC_DEFINE_AND_SUBST([DEFAULT_NETWORK_DATA_PORT], [5343])
313_AC_DEFINE_AND_SUBST([DEFAULT_NETWORK_VIEWER_PORT], [5344])
314_AC_DEFINE_AND_SUBST([DEFAULT_UST_PID_CHANNEL_LIVE_TIMER], [_DEFAULT_CHANNEL_LIVE_TIMER])
315_AC_DEFINE_AND_SUBST([DEFAULT_UST_PID_CHANNEL_READ_TIMER], [0])
316_AC_DEFINE_AND_SUBST([DEFAULT_UST_PID_CHANNEL_SUBBUF_NUM], [_DEFAULT_CHANNEL_SUBBUF_NUM])
317_AC_DEFINE_AND_SUBST([DEFAULT_UST_PID_CHANNEL_SUBBUF_SIZE], [_DEFAULT_CHANNEL_SUBBUF_SIZE])
318_AC_DEFINE_AND_SUBST([DEFAULT_UST_PID_CHANNEL_SWITCH_TIMER], [_DEFAULT_CHANNEL_SWITCH_TIMER])
e9404c27 319_AC_DEFINE_AND_SUBST([DEFAULT_UST_PID_CHANNEL_MONITOR_TIMER], [_DEFAULT_CHANNEL_MONITOR_TIMER])
7659d490
PP
320_AC_DEFINE_AND_SUBST([DEFAULT_UST_UID_CHANNEL_LIVE_TIMER], [_DEFAULT_CHANNEL_LIVE_TIMER])
321_AC_DEFINE_AND_SUBST([DEFAULT_UST_UID_CHANNEL_READ_TIMER], [0])
322_AC_DEFINE_AND_SUBST([DEFAULT_UST_UID_CHANNEL_SUBBUF_NUM], [_DEFAULT_CHANNEL_SUBBUF_NUM])
c9eb1ddc 323_AC_DEFINE_AND_SUBST([DEFAULT_UST_UID_CHANNEL_SUBBUF_SIZE], [524288])
7659d490 324_AC_DEFINE_AND_SUBST([DEFAULT_UST_UID_CHANNEL_SWITCH_TIMER], [_DEFAULT_CHANNEL_SWITCH_TIMER])
e9404c27 325_AC_DEFINE_AND_SUBST([DEFAULT_UST_UID_CHANNEL_MONITOR_TIMER], [_DEFAULT_CHANNEL_MONITOR_TIMER])
7659d490
PP
326_AC_DEFINE_QUOTED_AND_SUBST([DEFAULT_AGENT_BIND_ADDRESS], [localhost])
327_AC_DEFINE_QUOTED_AND_SUBST([DEFAULT_NETWORK_CONTROL_BIND_ADDRESS], [0.0.0.0])
328_AC_DEFINE_QUOTED_AND_SUBST([DEFAULT_NETWORK_DATA_BIND_ADDRESS], [0.0.0.0])
329_AC_DEFINE_QUOTED_AND_SUBST([DEFAULT_NETWORK_VIEWER_BIND_ADDRESS], [localhost])
330
61fa5028
PP
331# Command short descriptions
332_AC_DEFINE_QUOTED_AND_SUBST([CMD_DESCR_ADD_CONTEXT], [Add context fields to a channel])
61fa5028
PP
333_AC_DEFINE_QUOTED_AND_SUBST([CMD_DESCR_CREATE], [Create a tracing session])
334_AC_DEFINE_QUOTED_AND_SUBST([CMD_DESCR_DESTROY], [Tear down tracing sessions])
335_AC_DEFINE_QUOTED_AND_SUBST([CMD_DESCR_DISABLE_CHANNEL], [Disable tracing channels])
336_AC_DEFINE_QUOTED_AND_SUBST([CMD_DESCR_DISABLE_EVENT], [Disable event rules])
337_AC_DEFINE_QUOTED_AND_SUBST([CMD_DESCR_ENABLE_CHANNEL], [Create or enable tracing channels])
338_AC_DEFINE_QUOTED_AND_SUBST([CMD_DESCR_ENABLE_EVENT], [Create or enable event rules])
339_AC_DEFINE_QUOTED_AND_SUBST([CMD_DESCR_HELP], [Display help information about a command])
340_AC_DEFINE_QUOTED_AND_SUBST([CMD_DESCR_LIST], [List tracing sessions, domains, channels, and events])
341_AC_DEFINE_QUOTED_AND_SUBST([CMD_DESCR_LOAD], [Load tracing session configurations])
faf04ce7 342_AC_DEFINE_QUOTED_AND_SUBST([CMD_DESCR_REGENERATE], [Manage an LTTng tracing session's data regeneration])
61fa5028
PP
343_AC_DEFINE_QUOTED_AND_SUBST([CMD_DESCR_SAVE], [Save tracing session configurations])
344_AC_DEFINE_QUOTED_AND_SUBST([CMD_DESCR_SET_SESSION], [Set current tracing session])
345_AC_DEFINE_QUOTED_AND_SUBST([CMD_DESCR_SNAPSHOT], [Snapshot buffers of current tracing session])
346_AC_DEFINE_QUOTED_AND_SUBST([CMD_DESCR_START], [Start tracing])
347_AC_DEFINE_QUOTED_AND_SUBST([CMD_DESCR_STATUS], [Get the status of the current tracing session])
348_AC_DEFINE_QUOTED_AND_SUBST([CMD_DESCR_STOP], [Stop tracing])
349_AC_DEFINE_QUOTED_AND_SUBST([CMD_DESCR_TRACK], [Track specific system resources])
350_AC_DEFINE_QUOTED_AND_SUBST([CMD_DESCR_UNTRACK], [Untrack specific system resources])
351_AC_DEFINE_QUOTED_AND_SUBST([CMD_DESCR_VERSION], [Show version information])
352_AC_DEFINE_QUOTED_AND_SUBST([CMD_DESCR_VIEW], [Start trace viewer])
353
26296c48
JG
354if test "x$prefix" = "xNONE"; then
355 prefix=$ac_default_prefix
356fi
357CONFDIR=`eval echo $sysconfdir`
358AC_SUBST(CONFDIR)
359AC_DEFINE_UNQUOTED([CONFIG_LTTNG_SYSTEM_CONFIGDIR],"$CONFDIR", [LTTng system configuration directory.])
360
dcf266c0
JG
361AC_DEFINE_DIR([CONFIG_LTTNG_SYSTEM_DATADIR],[datadir], [LTTng system data directory.])
362
fac6795d 363# Check libpopt
e9cee23a
SM
364PKG_CHECK_MODULES([POPT], [popt],
365 [LIBS="$LIBS $POPT_LIBS"],
a9caac65
JR
366 [
367 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])
368 AC_MSG_WARN([Finding libpopt without pkg-config.])
369 AC_CHECK_LIB([popt],
370 [poptGetContext],
371 [],
372 [
373 AC_MSG_ERROR([Cannot find libpopt. Either set PKG_CONFIG_PATH to the configuration file location or use LDFLAGS=-Ldir to specify the library location])
374 ]
375 )
376 ]
fac6795d
DG
377)
378
34707125 379PKG_CHECK_MODULES([libxml2], [libxml-2.0 >= 2.7.6])
6c1494fd 380
9c28acb8
MJ
381# First, check for uuid in system libs
382AH_TEMPLATE([LTTNG_HAVE_LIBUUID], [Define if you have libuuid support])
81ba8833 383AC_CHECK_FUNCS([uuid_generate],
9c28acb8
MJ
384 [
385 AC_DEFINE([LTTNG_HAVE_LIBUUID], [1])
386 UUID_LIBS=""
387 ],
388 [
389 # Then, check if the pkg-config module is available, otherwise explicitly check
390 # for libuuid, or uuid support in the C-library.
391 PKG_CHECK_MODULES([UUID], [uuid],
392 [
393 AC_DEFINE([LTTNG_HAVE_LIBUUID], [1])
394 dnl PKG_CHECK_MODULES defines UUID_LIBS
395 ],
396 [
397 AC_MSG_WARN([pkg-config was unable to find a valid .pc for libuuid. Set PKG_CONFIG_PATH to specify the pkgconfig configuration file location])
398 AC_MSG_WARN([Finding libuuid without pkg-config.])
399 AC_CHECK_LIB([uuid], [uuid_generate],
400 [
401 AC_DEFINE([LTTNG_HAVE_LIBUUID], [1])
402 UUID_LIBS="-luuid"
403 ],
404 [
405 # libuuid not found, check for uuid_create in libc.
406 AC_CHECK_LIB([c], [uuid_create],
407 [
408 AC_DEFINE([LTTNG_HAVE_LIBUUID], [1])
409 UUID_LIBS="-lc"
410 ],
411 [
412 AC_MSG_FAILURE([Cannot find libuuid uuid_generate nor libc uuid_create. Either set PKG_CONFIG_PATH to the configuration file location or use LDFLAGS=-Ldir to specify the library location])
413 ]
414 )
415 ]
416 )
417 ]
418 )
419 ]
420)
421AC_SUBST(UUID_LIBS)
ffe60014 422
707de922
JG
423AC_CHECK_FUNC([clock_gettime], [AC_DEFINE_UNQUOTED([LTTNG_HAVE_CLOCK_GETTIME], 1, [Has clock_gettime() support.])])
424
6e59ae26 425# URCU library version needed or newer
3f7c0632 426m4_define([WRONG_LIBURCU_MSG], [Userspace RCU (liburcu) >= 0.8.0 is needed])
6e59ae26 427
3ffccaed 428# Check liburcu needed function calls
fac6795d 429AC_CHECK_DECL([cds_list_add], [],
3f7c0632 430 [AC_MSG_ERROR([WRONG_LIBURCU_MSG])], [[#include <urcu/list.h>]])
8bdee6e2 431AC_CHECK_DECL([cds_wfcq_init], [],
3f7c0632 432 [AC_MSG_ERROR([WRONG_LIBURCU_MSG])], [[#include <urcu/wfcqueue.h>]])
8bdee6e2 433AC_CHECK_DECL([cds_wfcq_dequeue_blocking], [],
3f7c0632 434 [AC_MSG_ERROR([WRONG_LIBURCU_MSG])], [[#include <urcu/wfcqueue.h>]])
8e12081b 435AC_CHECK_DECL([futex_async], [],
3f7c0632 436 [AC_MSG_ERROR([WRONG_LIBURCU_MSG])], [[#include <urcu/futex.h>]])
3ffccaed 437AC_CHECK_DECL([rcu_thread_offline], [],
3f7c0632 438 [AC_MSG_ERROR([WRONG_LIBURCU_MSG])], [[#include <urcu.h>]])
3ffccaed 439AC_CHECK_DECL([rcu_thread_online], [],
3f7c0632 440 [AC_MSG_ERROR([WRONG_LIBURCU_MSG])], [[#include <urcu.h>]])
6e59ae26 441AC_CHECK_DECL([caa_likely], [],
3f7c0632 442 [AC_MSG_ERROR([WRONG_LIBURCU_MSG])], [[#include <urcu.h>]])
9eadc48f
PP
443AC_CHECK_LIB([urcu-cds], [_cds_lfht_new], [],
444 [AC_MSG_ERROR([WRONG_LIBURCU_MSG])])
3f7c0632 445
e6b66098
YB
446#Function added in urcu 0.7.0
447AC_CHECK_DECL([cmm_smp_mb__before_uatomic_or], [],
3f7c0632 448 [AC_MSG_ERROR([WRONG_LIBURCU_MSG])], [[#include <urcu.h>]]
e6b66098 449)
6e59ae26 450
6866c4ad
MJ
451# Check for libkmod, it will be auto-neabled if found but won't fail if it's not,
452# it can be explicitly disabled with --without-kmod
453AH_TEMPLATE([HAVE_KMOD], [Define if you have kmod support])
454AC_ARG_WITH([kmod],
455 [AS_HELP_STRING([--with-kmod], [build with lkmod support @<:@default=check@:>@])],
456 [],
457 [with_kmod=check]
458)
234170ac 459
6866c4ad
MJ
460AS_IF([test "x$with_kmod" != "xno"],
461 [
462 AC_CHECK_LIB([kmod], [kmod_module_probe_insert_module],
463 [
464 AC_DEFINE([HAVE_KMOD], [1])
465 KMOD_LIBS="-lkmod"
466 ],
467 [
468 if test "x$with_kmod" != xcheck; then
469 AC_MSG_FAILURE([Cannot find libkmod. Use [LDFLAGS]=-Ldir and [CPPFLAGS]=-Idir to specify its location.])
470 else
471 with_kmod=no
472 fi
473 ]
474 )
475 ]
476)
477AC_SUBST(KMOD_LIBS)
234170ac 478
89e7f978
MJ
479# Check for liblttng-ust-ctl, fail if it's not found,
480# it can be explicitly disabled with --without-lttng-ust
481AH_TEMPLATE([HAVE_LIBLTTNG_UST_CTL], [Define if you have LTTng-UST control support])
482AC_ARG_WITH([lttng-ust],
483 [AS_HELP_STRING([--without-lttng-ust], [build without LTTng-UST (Userspace Tracing) support])],
484 [],
485 [with_lttng_ust=yes]
486)
487
488AS_IF([test "x$with_lttng_ust" = "xyes"],
489 [
490 AC_CHECK_LIB([lttng-ust-ctl], [ustctl_recv_channel_from_consumer],
491 [
492 AC_DEFINE([HAVE_LIBLTTNG_UST_CTL], [1])
493 ],
494 [
495 AC_MSG_FAILURE([Cannot find LTTng-UST >= 2.2.x. Use [LDFLAGS]=-Ldir and [CPPFLAGS]=-Idir to specify its location, or specify --without-lttng-ust to build lttng-tools without LTTng-UST support.])
496 ],
497 [-lurcu-common -lurcu-bp -lurcu-cds -lrt -ldl]
498 )
499 ]
500)
501AM_CONDITIONAL([HAVE_LIBLTTNG_UST_CTL], [test "x$with_lttng_ust" = "xyes"])
502
b91dd016 503
f6a9efaa 504
6816a5cb
MD
505# check for dlopen
506AC_CHECK_LIB([dl], [dlopen],
b1e91030
MJ
507 [DL_LIBS="-ldl"],
508 [
509 #libdl not found, check for dlopen in libc.
510 AC_CHECK_LIB([c], [dlopen],
511 [DL_LIBS="-lc"],
512 [AC_MSG_FAILURE([Cannot find dlopen in libdl nor libc. Use [LDFLAGS]=-Ldir to specify their location.])]
513 )
514 ]
515)
516AC_SUBST(DL_LIBS)
6816a5cb 517
53a80697
MD
518# Check for fmemopen
519AC_CHECK_LIB([c], [fmemopen],
520[
521 AC_DEFINE_UNQUOTED([LTTNG_HAVE_FMEMOPEN], 1, [Has fmemopen support.])
522]
523)
524
525# Check for open_memstream
526AC_CHECK_LIB([c], [open_memstream],
527[
528 AC_DEFINE_UNQUOTED([LTTNG_HAVE_OPEN_MEMSTREAM], 1, [Has open_memstream support.])
529]
530)
531
6faa26ca
JD
532# check for libpfm
533AC_CHECK_LIB([pfm], [pfm_initialize],
534 [
535 have_libpfm=yes
536 ])
537AM_CONDITIONAL([LTTNG_TOOLS_BUILD_WITH_LIBPFM], [test "x$have_libpfm" = "xyes"])
538
ceb6ba51
DG
539AC_ARG_ENABLE([git-version],
540 [AC_HELP_STRING([--disable-git-version],
541 [Do not use the git version for the build])],
4c6ac053 542 [have_git_version=$enableval], [have_git_version=yes]
ceb6ba51 543)
4c6ac053
MD
544
545AM_CONDITIONAL([LTTNG_TOOLS_BUILD_GIT_SOURCE],
546 [test "x${have_git_version}" = "xyes"])
ceb6ba51 547
36907cb5
DS
548# For Python
549# SWIG version needed or newer:
550swig_version=2.0.0
551
552AC_ARG_ENABLE([python-bindings],
553 [AC_HELP_STRING([--enable-python-bindings],
554 [compile Python bindings])],
e9c45a26 555 [enable_python_binding=$enableval], [enable_python_binding=no])
36907cb5 556
e9c45a26 557AM_CONDITIONAL([PYTHON_BINDING], [test "x$enable_python_binding" = xyes])
36907cb5 558
e9c45a26 559if test "x$enable_python_binding" = xyes; then
36907cb5 560 AX_PKG_SWIG($swig_version, [], [ AC_MSG_ERROR([SWIG $swig_version or newer is needed]) ])
f558e55e 561 AS_IF([test x$enable_shared = xno], [ AC_MSG_ERROR([Python bindings require shared libraries.]) ])
56aa2354 562 AM_PATH_PYTHON([3.0])
36907cb5
DS
563
564 AC_ARG_VAR([PYTHON_INCLUDE], [Include flags for python, bypassing python-config])
565 AC_ARG_VAR([PYTHON_CONFIG], [Path to python-config])
566 AS_IF([test -z "$PYTHON_INCLUDE"], [
567 AS_IF([test -z "$PYTHON_CONFIG"], [
568 AC_PATH_PROGS([PYTHON_CONFIG],
569 [python$PYTHON_VERSION-config python-config],
570 [no],
571 [`dirname $PYTHON`])
572 AS_IF([test "$PYTHON_CONFIG" = no], [AC_MSG_ERROR([cannot find python-config for $PYTHON. Do you have python-dev installed?])])
573 ])
574 AC_MSG_CHECKING([python include flags])
575 PYTHON_INCLUDE=`$PYTHON_CONFIG --includes`
576 AC_MSG_RESULT([$PYTHON_INCLUDE])
577 ])
578
579else
580 AC_MSG_NOTICE([You may configure with --enable-python-bindings ]dnl
581[if you want Python bindings.])
582
583fi
584
3ffccaed 585# Epoll check. If not present, the build will fallback on poll() API
71615260
DG
586AX_HAVE_EPOLL(
587 [AX_CONFIG_FEATURE_ENABLE(epoll)],
588 [AX_CONFIG_FEATURE_DISABLE(epoll)]
589)
71615260
DG
590AX_CONFIG_FEATURE(
591 [epoll], [This platform supports epoll(7)],
592 [HAVE_EPOLL], [This platform supports epoll(7).],
593 [enable_epoll="yes"], [enable_epoll="no"]
594)
71615260
DG
595AM_CONDITIONAL([COMPAT_EPOLL], [ test "$enable_epoll" = "yes" ])
596
839a9569
MJ
597AM_CONDITIONAL([TEST_JAVA_JUL_AGENT], [test "x$test_java_agent_jul" = "xyes"])
598AM_CONDITIONAL([TEST_JAVA_LOG4J_AGENT], [test "x$test_java_agent_log4j" = "xyes"])
37175ce4 599
839a9569
MJ
600if test "x$test_java_agent_jul" = "xyes" || test "x$test_java_agent_log4j" = "xyes"; then
601 AX_JAVA_OPTIONS
602 AX_PROG_JAVAC
603 AX_PROG_JAVA
604 AX_PROG_JAR
37175ce4 605
839a9569 606 AX_CHECK_CLASSPATH
504d4ace 607
839a9569
MJ
608 # Check for Java UST agent common class first
609 AX_CHECK_CLASS(org.lttng.ust.agent.AbstractLttngAgent)
610 if test "x$ac_cv_class_org_lttng_ust_agent_AbstractLttngAgent" = "xno"; then
611 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 612 fi
0b7af945 613
839a9569
MJ
614 if test "x$test_java_agent_jul" = "xyes"; then
615 # Check for JUL agent class
616 AX_CHECK_CLASS(org.lttng.ust.agent.jul.LttngLogHandler)
617 if test "x$ac_cv_class_org_lttng_ust_agent_jul_LttngLogHandler" = "xno"; then
618 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
619 fi
620 fi
621
839a9569
MJ
622 if test "x$test_java_agent_log4j" = "xyes"; then
623 # Check for Log4j agent class
624 AX_CHECK_CLASS(org.lttng.ust.agent.log4j.LttngLogAppender)
625 if test "x$ac_cv_class_org_lttng_ust_agent_log4j_LttngLogAppender" = "xno"; then
626 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"])
627 fi
0b7af945 628
839a9569
MJ
629 # Check for Log4j class
630 AX_CHECK_CLASS(org.apache.log4j.Logger)
631 if test "x$ac_cv_class_org_apache_log4j_Logger" = "xno"; then
632 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"])
633 fi
634 fi
635fi
37175ce4 636
008559fa
PP
637# set $IN_GIT_REPO if we're in the Git repository; the `bootstrap` file
638# is not distributed in tarballs
639AS_IF([test -f "$srcdir/bootstrap"], [in_git_repo=yes], [in_git_repo=no])
640AM_CONDITIONAL([IN_GIT_REPO], [test "x$in_git_repo" = "xyes"])
641
a3eae3c9 642# enable building man pages (user's intention)
008559fa 643AC_ARG_ENABLE(
a3eae3c9 644 man-pages,
008559fa 645 AS_HELP_STRING(
a3eae3c9 646 [--disable-man-pages],
24c872d0 647 [Do not build and install man pages (already built in a distributed tarball)]
008559fa 648 ),
a3eae3c9
PP
649 [man_pages_opt=$enableval],
650 [man_pages_opt=yes]
008559fa
PP
651)
652
008559fa 653# check for asciidoc and xmlto if we enabled building the man pages
a3eae3c9 654have_asciidoc_xmlto=no
a24d43ae 655warn_prebuilt_man_pages=no
a3eae3c9
PP
656
657AS_IF([test "x$man_pages_opt" = "xyes"], [
008559fa
PP
658 AC_PATH_PROG([ASCIIDOC], [asciidoc], [no])
659 AC_PATH_PROG([XMLTO], [xmlto], [no])
660
661 AS_IF([test "x$ASCIIDOC" = "xno" || test "x$XMLTO" = "xno"], [
a3eae3c9
PP
662 AS_IF([test "x$in_git_repo" = "xyes"], [
663 # this is an error because we're in the Git repo, which
664 # means the man pages are not already generated for us,
665 # thus asciidoc/xmlto are required because we were asked
666 # to build the man pages
667 AC_MSG_ERROR([
fd3e1238 668You need asciidoc and xmlto to build the LTTng-tools man pages. Use
a3eae3c9
PP
669--disable-man-pages to disable building the man pages, in which case
670they will not be installed.
671 ])
672 ], [
673 # only warn here: since we're in the tarball, the man
674 # pages should already be generated at this point, thus
675 # asciidoc/xmlto are not strictly required
a24d43ae 676 warn_prebuilt_man_pages=yes
a3eae3c9
PP
677 ])
678 ], [
679 have_asciidoc_xmlto=yes
008559fa
PP
680 ])
681])
682
a3eae3c9
PP
683# export man page build condition: build the man pages if the user
684# asked for it, and if the tools are available
685AM_CONDITIONAL([MAN_PAGES_OPT], [test "x$man_pages_opt" != "xno"])
686AM_CONDITIONAL([HAVE_ASCIIDOC_XMLTO], [test "x$have_asciidoc_xmlto" = "xyes"])
687
f9c59cd0
MJ
688AC_DEFINE_UNQUOTED([MANPATH], ["`eval eval echo $mandir`"], [Path to man pages.])
689
4fc83d94
PP
690# embedded --help message
691AC_ARG_ENABLE(
692 [embedded-help],
693 AS_HELP_STRING(
694 [--enable-embedded-help],
695 [Embed the --help messages in the executable files]
696 ),
697 [embedded_help=$enableval],
698 [embedded_help=no]
699)
700AS_IF([test "x$embedded_help" = "xyes"], [
701 AS_IF([test "x$man_pages_opt" = "xno"], [
702 AC_MSG_ERROR([You need the --enable-man-pages option with the --enable-embedded-help option.])
703 ])
704 AC_PATH_PROG([man_prog_path], [man], [no])
705 AS_IF([test "x$man_prog_path" = "xno"], [
706 AC_MSG_ERROR([You need man with the --enable-embedded-help option.])
707 ])
708 AC_DEFINE_UNQUOTED([LTTNG_EMBED_HELP], 1, [Embed --help messages.])
709 AC_SUBST([MANPROG], [$man_prog_path])
710])
711AM_CONDITIONAL([EMBED_HELP], [test "x$embedded_help" != "xno"])
712
9586c198
JR
713# Python agent test
714UST_PYTHON_AGENT="lttngust"
715
716AC_ARG_ENABLE(test-python2-agent,
717 AS_HELP_STRING([--enable-test-python2-agent],
718 [enable tests for python2 agent. Python2 interpreter path can be overridden by setting the PYTHON2 environment variable. Default: Autodetect]
719 ),[:],[test_python2_agent_autodetect=yes]
720)
721
722AC_ARG_ENABLE(test-python3-agent,
723 AS_HELP_STRING([--enable-test-python3-agent],
724 [enable tests for python3 agent. Python3 interpreter path can be overridden by setting the PYTHON3 environment variable. Default: Autodetect]
725 ),[:],[test_python3_agent_autodetect=yes]
726)
727
728AC_ARG_ENABLE(test-python-agent-all,
729 AS_HELP_STRING([--enable-test-python-agent-all],
730 [enable test for all python{2/3} agent.]
731 ),
732)
733
734AS_IF([test ! -z "$enable_test_python_agent_all"], [
735 unset test_python2_agent_autodetect
736 unset test_python3_agent_autodetect
737])
738
739AS_IF([test "x$enable_test_python_agent_all" = "xyes"], [
740 enable_test_python2_agent=yes
741 enable_test_python3_agent=yes
742])
743
744AS_IF([test "x$enable_test_python_agent_all" = "xno"], [
745 enable_test_python2_agent=no
746 enable_test_python3_agent=no
747])
748
749
750AS_IF([test "x$enable_test_python2_agent" = "xyes" -o "x$test_python2_agent_autodetect" = "xyes" ], [
751 AS_IF([test -z "$PYTHON2"], [
752 PYTHON2=python2
753 ], [
754 AC_MSG_WARN([Using user-defined PYTHON2 ($PYTHON2) for lttng-ust python2 agent check])
755 ])
756
757 AC_PATH_PROG([PYTHON2_BIN],[$PYTHON2])
758 AS_IF([test -z "$PYTHON2_BIN"], [
759 AS_IF([test -z "$test_python2_agent_autodetect"],[
760 AC_MSG_ERROR([No python2 interpreter found. PYTHON2 can be set to override default interpreter path])
761 ])
762 ], [
763 AC_MSG_CHECKING([for python2 lttng-ust agent])
764 AS_IF([$PYTHON2_BIN -c "import $UST_PYTHON_AGENT" 2>/dev/null], [
765 PYTHON2_AGENT=$PYTHON2_BIN
766 AC_MSG_RESULT([yes])
767 RUN_PYTHON_AGENT_TEST=yes
768 ], [
769 AC_MSG_RESULT([no])
770 AS_IF([test -z "$test_python2_agent_autodetect"],[
771 AC_MSG_ERROR([No python2 agent found. The path to the agent can be specified by setting the PYTHONPATH environment variable.])
772 ])
773 ])
774
775 ])
776
777])
778
779AS_IF([test "x$enable_test_python3_agent" = "xyes" -o "x$test_python3_agent_autodetect" = "xyes" ], [
780 AS_IF([test -z "$PYTHON3"], [
781 PYTHON3=python3
782 ], [
783 AC_MSG_WARN([Using user-defined PYTHON3 ($PYTHON3) for lttng-ust python3 agent check])
784 ])
785
786 AC_PATH_PROG([PYTHON3_BIN],[$PYTHON3])
787 AS_IF([test -z "$PYTHON3_BIN"], [
788 AS_IF([test -z "$test_python3_agent_autodetect"],[
789 AC_MSG_ERROR([No python3 interpreter found. PYTHON3 can be set to override default interpreter path])
790 ])
791 ], [
792 AC_MSG_CHECKING([for python3 lttng-ust agent])
793 AS_IF([$PYTHON3_BIN -c "import $UST_PYTHON_AGENT" 2>/dev/null], [
794 PYTHON3_AGENT=$PYTHON3_BIN
795 AC_MSG_RESULT([yes])
796 RUN_PYTHON_AGENT_TEST=yes
797 ], [
798 AC_MSG_RESULT([no])
799 AS_IF([test -z "$test_python3_agent_autodetect"],[
800 AC_MSG_ERROR([No python3 agent found. The path to the agent can be specified by setting the PYTHONPATH environment variable.])
801 ])
802 ])
803
804 ])
805])
9586c198
JR
806AC_SUBST([RUN_PYTHON_AGENT_TEST])
807AC_SUBST([PYTHON2_AGENT])
808AC_SUBST([PYTHON3_AGENT])
809
87fb9fc0
JR
810# Arguments for binaries build exclusion
811AC_ARG_ENABLE([bin-lttng], AS_HELP_STRING([--disable-bin-lttng],[Disable the build of lttng binaries]))
812AC_ARG_ENABLE([bin-lttng-consumerd], AS_HELP_STRING([--disable-bin-lttng-consumerd],
813 [Disable the build of lttng-consumerd binaries]))
814AC_ARG_ENABLE([bin-lttng-crash], AS_HELP_STRING([--disable-bin-lttng-crash],[Disable the build of lttng-crash binaries]))
815AC_ARG_ENABLE([bin-lttng-relayd], AS_HELP_STRING([--disable-bin-lttng-relayd],
816 [Disable the build of lttng-relayd binaries]))
817AC_ARG_ENABLE([bin-lttng-sessiond], AS_HELP_STRING([--disable-bin-lttng-sessiond],
818 [Disable the build of lttng-sessiond binaries]))
819AC_ARG_ENABLE([extras], AS_HELP_STRING([--disable-extras],
820 [Disable the build of the extra components]))
821
822
823# Always build libconfig since it a dependency of libcommon
824build_lib_config=yes
825
826build_lib_compat=no
827build_lib_consumer=no
828build_lib_hashtable=no
829build_lib_health=no
830build_lib_index=no
831build_lib_kernel_consumer=no
832build_lib_kernel_ctl=no
833build_lib_lttng_ctl=no
834build_lib_relayd=no
835build_lib_sessiond_comm=no
836build_lib_testpoint=no
837build_lib_ust_consumer=no
838
839# There is an overlap for enabled dependencies, but this makes everything
840# simpler. libcommon and libconfig are always compiled so they are not repeated
841# here.
842
843# Enable binary dependencies.
844AS_IF([test x$enable_bin_lttng != xno],
845 [
846 build_lib_lttng_ctl=yes
847 ]
848)
849
850AS_IF([test x$enable_bin_lttng_consumerd != xno],
851 [
852 build_lib_consumer=yes
853 build_lib_sessiond_comm=yes
854 build_lib_index=yes
855 build_lib_health=yes
856 build_lib_testpoint=yes
857 ]
858)
859
860AS_IF([test x$enable_bin_lttng_crash != xno],
861 # Do nothing since libconfig and libcommon are built by default.
862 []
863)
864
865AS_IF([test x$enable_bin_lttng_relayd != xno],
866 [
867 build_lib_lttng_ctl=yes
868 build_lib_sessiond_comm=yes
869 build_lib_hashtable=yes
870 build_lib_compat=yes
871 build_lib_index=yes
872 build_lib_health=yes
873 build_lib_testpoint=yes
874 ]
875)
876AS_IF([test x$enable_bin_lttng_sessiond != xno],
877 [
878 build_lib_lttng_ctl=yes
879 build_lib_sessiond_comm=yes
880 build_lib_kernel_ctl=yes
881 build_lib_hashtable=yes
882 build_lib_compat=yes
883 build_lib_relayd=yes
884 build_lib_testpoint=yes
885 build_lib_health=yes
886 build_lib_health=yes
887 ]
888)
889
890# Libraries dependencies enabling
891AS_IF([test x$build_lib_lttng_ctl = xyes],
892 [
893 build_lib_sessiond_comm=yes
894 build_lib_hashtable=yes
895 ]
896)
897
898AS_IF([test x$build_lib_consumer = xyes],
899 [
900 build_lib_sessiond_comm=yes
901 build_lib_kernel_consumer=yes
902 build_lib_hashtable=yes
903 build_lib_compat=yes
904 build_lib_relayd=yes
89e7f978 905 AS_IF([test "x$with_lttng_ust" = "xyes"], [build_lib_ust_consumer=yes])
87fb9fc0
JR
906 ]
907)
908
909AS_IF([test x$build_lib_kernel_consumer = xyes],
910 [
911 build_lib_kernel_ctl=yes
912 build_lib_relayd=yes
913 ]
914)
915
916AS_IF([test x$build_lib_relayd = xyes],
917 [
918 build_lib_sessiond_comm=yes
919 ]
920)
921
922
923# Export binaries build conditions.
924AM_CONDITIONAL([BUILD_BIN_LTTNG], [test x$enable_bin_lttng != xno])
925AM_CONDITIONAL([BUILD_BIN_LTTNG_CONSUMERD], [test x$enable_bin_lttng_consumerd != xno])
926AM_CONDITIONAL([BUILD_BIN_LTTNG_CRASH], [test x$enable_bin_lttng_crash != xno])
927AM_CONDITIONAL([BUILD_BIN_LTTNG_RELAYD], [test x$enable_bin_lttng_relayd != xno])
928AM_CONDITIONAL([BUILD_BIN_LTTNG_SESSIOND], [test x$enable_bin_lttng_sessiond != xno])
929
930# Export the tests and extras build conditions.
931AS_IF([\
932test "x$enable_bin_lttng" != "xno" && \
933test "x$enable_bin_lttng_consumerd" != "xno" && \
934test "x$enable_bin_lttng_crash" != "xno" && \
935test "x$enable_bin_lttng_relayd" != "xno" && \
936test "x$enable_bin_lttng_sessiond" != "xno"],
937[build_tests=yes],
938[build_tests=no]
939)
940
941AM_CONDITIONAL([BUILD_TESTS], [test x$build_tests = xyes])
942AM_CONDITIONAL([BUILD_EXTRAS], [test x$enable_extras != xno])
943
944# Export libraries build conditions.
945AM_CONDITIONAL([BUILD_LIB_COMPAT], [test x$build_lib_compat = xyes])
946AM_CONDITIONAL([BUILD_LIB_CONFIG], [test x$build_lib_config = xyes])
947AM_CONDITIONAL([BUILD_LIB_CONSUMER], [test x$build_lib_consumer = xyes])
948AM_CONDITIONAL([BUILD_LIB_HASHTABLE], [test x$build_lib_hashtable = xyes])
949AM_CONDITIONAL([BUILD_LIB_HEALTH], [test x$build_lib_health = xyes])
950AM_CONDITIONAL([BUILD_LIB_INDEX], [test x$build_lib_index = xyes])
951AM_CONDITIONAL([BUILD_LIB_KERNEL_CONSUMER], [test x$build_lib_kernel_consumer = xyes])
952AM_CONDITIONAL([BUILD_LIB_KERNEL_CTL], [test x$build_lib_kernel_ctl = xyes])
953AM_CONDITIONAL([BUILD_LIB_LTTNG_CTL], [test x$build_lib_lttng_ctl = xyes])
954AM_CONDITIONAL([BUILD_LIB_RELAYD], [test x$build_lib_relayd = xyes])
955AM_CONDITIONAL([BUILD_LIB_SESSIOND_COMM], [test x$build_lib_sessiond_comm = xyes])
956AM_CONDITIONAL([BUILD_LIB_TESTPOINT], [test x$build_lib_testpoint = xyes])
957AM_CONDITIONAL([BUILD_LIB_UST_CONSUMER], [test x$build_lib_ust_consumer = xyes])
953192ba 958
87e96404
MJ
959AM_CFLAGS="-Wall -fno-strict-aliasing $PTHREAD_CFLAGS"
960AC_SUBST(AM_CFLAGS)
6e2d116c 961
87e96404
MJ
962AM_CPPFLAGS="-I\$(top_srcdir)/include -I\$(top_builddir)/include -I\$(top_srcdir)/src -include config.h $AM_CPPFLAGS"
963AC_SUBST(AM_CPPFLAGS)
6e2d116c
DG
964
965lttngincludedir="${includedir}/lttng"
6e2d116c 966AC_SUBST(lttngincludedir)
a58c490f
JG
967
968lttngactionincludedir="${includedir}/lttng/action"
969AC_SUBST(lttngactionincludedir)
970
971lttngconditionincludedir="${includedir}/lttng/condition"
972AC_SUBST(lttngconditionincludedir)
973
974lttngnotificationincludedir="${includedir}/lttng/notification"
975AC_SUBST(lttngnotificationincludedir)
976
977lttngtriggerincludedir="${includedir}/lttng/trigger"
978AC_SUBST(lttngtriggerincludedir)
979
386418ba
MD
980lttnglibexecdir="${libdir}/lttng/libexec"
981AC_SUBST(lttnglibexecdir)
982
fac6795d
DG
983AC_CONFIG_FILES([
984 Makefile
10a8a223 985 doc/Makefile
6991b181 986 doc/man/Makefile
c4ee4984 987 doc/man/asciidoc-attrs.conf
fac6795d 988 include/Makefile
36907cb5
DS
989 extras/Makefile
990 extras/bindings/Makefile
991 extras/bindings/swig/Makefile
992 extras/bindings/swig/python/Makefile
57f0bd0c 993 extras/core-handler/Makefile
10a8a223
DG
994 src/Makefile
995 src/common/Makefile
996 src/common/kernel-ctl/Makefile
997 src/common/kernel-consumer/Makefile
c8fea79c 998 src/common/consumer/Makefile
10a8a223
DG
999 src/common/ust-consumer/Makefile
1000 src/common/hashtable/Makefile
1001 src/common/sessiond-comm/Makefile
d31efcff 1002 src/common/compat/Makefile
00e2e675 1003 src/common/relayd/Makefile
6242251b 1004 src/common/testpoint/Makefile
309167d2 1005 src/common/index/Makefile
55d09795 1006 src/common/health/Makefile
bac6245e 1007 src/common/config/Makefile
9c55c241 1008 src/common/string-utils/Makefile
10a8a223
DG
1009 src/lib/Makefile
1010 src/lib/lttng-ctl/Makefile
d00c599e 1011 src/lib/lttng-ctl/filter/Makefile
2c452d45 1012 src/lib/lttng-ctl/lttng-ctl.pc
10a8a223
DG
1013 src/bin/Makefile
1014 src/bin/lttng-consumerd/Makefile
1015 src/bin/lttng-sessiond/Makefile
b8aa1682 1016 src/bin/lttng-relayd/Makefile
10a8a223 1017 src/bin/lttng/Makefile
d7ba1388 1018 src/bin/lttng-crash/Makefile
fac6795d 1019 tests/Makefile
512eb148 1020 tests/destructive/Makefile
9ac429ef
CB
1021 tests/regression/Makefile
1022 tests/regression/kernel/Makefile
1023 tests/regression/tools/Makefile
1024 tests/regression/tools/streaming/Makefile
1025 tests/regression/tools/filtering/Makefile
1026 tests/regression/tools/health/Makefile
d946d662 1027 tests/regression/tools/tracefile-limits/Makefile
07b86b52 1028 tests/regression/tools/snapshots/Makefile
1b368955 1029 tests/regression/tools/live/Makefile
345121ec 1030 tests/regression/tools/exclusion/Makefile
e02b109b 1031 tests/regression/tools/save-load/Makefile
192ac418 1032 tests/regression/tools/save-load/configuration/Makefile
68270f0f 1033 tests/regression/tools/mi/Makefile
075ffe1f 1034 tests/regression/tools/wildcard/Makefile
4c80129b 1035 tests/regression/tools/crash/Makefile
eded6438 1036 tests/regression/tools/regen-metadata/Makefile
54cd6107 1037 tests/regression/tools/regen-statedump/Makefile
dc890bff 1038 tests/regression/tools/notification/Makefile
9ac429ef
CB
1039 tests/regression/ust/Makefile
1040 tests/regression/ust/nprocesses/Makefile
1041 tests/regression/ust/high-throughput/Makefile
1042 tests/regression/ust/low-throughput/Makefile
1043 tests/regression/ust/before-after/Makefile
f5481aa9 1044 tests/regression/ust/buffers-pid/Makefile
a788a3ed 1045 tests/regression/ust/periodical-metadata-flush/Makefile
9ac429ef
CB
1046 tests/regression/ust/multi-session/Makefile
1047 tests/regression/ust/overlap/Makefile
1048 tests/regression/ust/overlap/demo/Makefile
91c75285 1049 tests/regression/ust/linking/Makefile
43c28d50 1050 tests/regression/ust/daemon/Makefile
ee28adfb 1051 tests/regression/ust/exit-fast/Makefile
37bd6c8e 1052 tests/regression/ust/fork/Makefile
5836cdc2 1053 tests/regression/ust/libc-wrapper/Makefile
d4f53cc3 1054 tests/regression/ust/baddr-statedump/Makefile
c70c42cc 1055 tests/regression/ust/ust-dl/Makefile
37175ce4 1056 tests/regression/ust/java-jul/Makefile
504d4ace 1057 tests/regression/ust/java-log4j/Makefile
0e115563 1058 tests/regression/ust/python-logging/Makefile
568d7e2d 1059 tests/regression/ust/getcpu-override/Makefile
199800b2 1060 tests/regression/ust/clock-override/Makefile
10b56aef 1061 tests/regression/ust/type-declarations/Makefile
ced06804 1062 tests/regression/ust/rotation-destroy-flush/Makefile
de7e372e 1063 tests/regression/ust/blocking/Makefile
605ac758 1064 tests/stress/Makefile
81d029da 1065 tests/unit/Makefile
1501a7f3 1066 tests/unit/ini_config/Makefile
6faa26ca 1067 tests/perf/Makefile
86a96e6c
CB
1068 tests/utils/Makefile
1069 tests/utils/tap/Makefile
7e0cc23b
CB
1070 tests/utils/testapp/Makefile
1071 tests/utils/testapp/gen-ust-events/Makefile
ffb08a8c 1072 tests/utils/testapp/gen-ust-nevents/Makefile
5400d18f 1073 tests/utils/testapp/gen-ust-nevents-str/Makefile
b02dcdb8 1074 tests/utils/testapp/gen-ust-tracef/Makefile
fac6795d
DG
1075])
1076
87fb9fc0 1077# Inject variable into python test script.
9586c198 1078AC_CONFIG_FILES([tests/regression/ust/python-logging/test_python_logging],[chmod +x tests/regression/ust/python-logging/test_python_logging])
6faa26ca
JD
1079# Inject LTTNG_TOOLS_BUILD_WITH_LIBPFM variable in test script.
1080AC_CONFIG_FILES([tests/perf/test_perf_raw],[chmod +x tests/perf/test_perf_raw])
9586c198 1081
fac6795d 1082AC_OUTPUT
6299f964 1083
994dd8a4 1084#
87fb9fc0 1085# Mini-report on what will be built.
994dd8a4 1086#
994dd8a4 1087
9d8c7763
JG
1088PPRINT_INIT
1089PPRINT_SET_INDENT(1)
1090PPRINT_SET_TS(38)
1091
1092AS_ECHO
1093AS_ECHO("${PPRINT_COLOR_BLDBLU}LTTng-tools $PACKAGE_VERSION \"$version_name\"$PPRINT_COLOR_RST")
1094AS_ECHO
1095
1096AS_IF([test -n "$report_fold"], [
1097 AS_ECHO("`AS_ECHO("$version_description") | $report_fold -s`")
1098], [
1099 AS_ECHO("$version_description")
1100])
0e4cbe7e 1101
9d8c7763
JG
1102AS_ECHO
1103PPRINT_SUBTITLE([Features])
0e4cbe7e 1104
87fb9fc0 1105# Target architecture we're building for.
2d90c6c8 1106target_arch=$host_cpu
994dd8a4
AM
1107[
1108for f in $CFLAGS; do
1109 if test $f = "-m32"; then
1110 target_arch="32-bit"
1111 elif test $f = "-m64"; then
1112 target_arch="64-bit"
1113 fi
1114done
1115]
9d8c7763 1116PPRINT_PROP_STRING([Target architecture], $target_arch)
994dd8a4 1117
234170ac 1118# kmod enabled/disabled
6866c4ad 1119test "x$with_kmod" != "xno" && value=1 || value=0
9d8c7763 1120PPRINT_PROP_BOOL([libkmod support], $value)
234170ac 1121
994dd8a4 1122# LTTng-UST enabled/disabled
89e7f978 1123test "x$with_lttng_ust" = "xyes" && value=1 || value=0
9d8c7763 1124PPRINT_PROP_BOOL([LTTng-UST support], $value)
55bed213 1125
9d8c7763
JG
1126AS_ECHO
1127PPRINT_SUBTITLE([Binaries])
87fb9fc0
JR
1128
1129# List binaries to be built
9d8c7763
JG
1130test x$enable_bin_lttng != xno && value=1 || value=0
1131PPRINT_PROP_BOOL([lttng], $value)
87fb9fc0 1132
9d8c7763
JG
1133test x$enable_bin_lttng_consumerd != xno && value=1 || value=0
1134PPRINT_PROP_BOOL([lttng-consumerd], $value)
87fb9fc0 1135
9d8c7763
JG
1136test x$enable_bin_lttng_crash != xno && value=1 || value=0
1137PPRINT_PROP_BOOL([lttng-crash], $value)
87fb9fc0 1138
9d8c7763
JG
1139test x$enable_bin_lttng_relayd != xno && value=1 || value=0
1140PPRINT_PROP_BOOL([lttng-relayd], $value)
87fb9fc0 1141
9d8c7763
JG
1142test x$enable_bin_lttng_sessiond != xno && value=1 || value=0
1143PPRINT_PROP_BOOL([lttng-sessiond], $value)
87fb9fc0 1144
9d8c7763
JG
1145# Extras
1146test x$enable_extras != xno && value=1 || value=0
1147AS_ECHO
1148PPRINT_SET_INDENT(0)
1149PPRINT_PROP_BOOL([Extras], $value, $PPRINT_COLOR_SUBTITLE)
1150PPRINT_SET_INDENT(1)
87fb9fc0 1151
9d8c7763
JG
1152AS_ECHO
1153PPRINT_SUBTITLE([Tests])
87fb9fc0
JR
1154
1155# Print clear message that tests won't be built
1156AS_IF([test "x$build_tests" = "xno"],[
9d8c7763 1157 PPRINT_WARN([Tests won't be built since some binaries were disabled])
87fb9fc0
JR
1158])
1159
839a9569 1160# LTTng UST Java agent JUL tests enabled/disabled
9d8c7763
JG
1161test "x$test_java_agent_jul" = "xyes" && value=1 || value=0
1162PPRINT_PROP_BOOL([LTTng-UST Java agent JUL tests], $value)
839a9569
MJ
1163
1164# LTTng UST Java agent Log4j tests enabled/disabled
9d8c7763
JG
1165test "x$test_java_agent_log4j" = "xyes" && value=1 || value=0
1166PPRINT_PROP_BOOL([LTTng-UST Java agent Log4j tests], $value)
839a9569 1167
9d8c7763
JG
1168test ! -z "$PYTHON2_AGENT" && value=1 || value=0
1169PPRINT_PROP_BOOL([LTTng-UST Python2 agent tests], $value)
9586c198 1170
9d8c7763
JG
1171test ! -z "$PYTHON3_AGENT" && value=1 || value=0
1172PPRINT_PROP_BOOL([LTTng-UST Python3 agent tests], $value)
008559fa 1173
36907cb5 1174#Python binding enabled/disabled
e9c45a26 1175test "x$enable_python_binding" = xyes && value=1 || value=0
9d8c7763
JG
1176AS_ECHO
1177PPRINT_SET_INDENT(0)
1178PPRINT_PROP_BOOL([Python binding], $value, $PPRINT_COLOR_SUBTITLE)
008559fa
PP
1179
1180# man pages build enabled/disabled
a3eae3c9
PP
1181m4_pushdef([build_man_pages_msg], [Build and install man pages])
1182
1183AS_IF([test "x$man_pages_opt" != "xno"], [
008559fa 1184 AS_IF([test "x$in_git_repo" = "xyes"], [
a3eae3c9 1185 PPRINT_PROP_BOOL([build_man_pages_msg], 1, $PPRINT_COLOR_SUBTITLE)
008559fa 1186 ], [
a3eae3c9
PP
1187 AS_IF([test "x$have_asciidoc_xmlto" = "xyes"], [
1188 PPRINT_PROP_BOOL([build_man_pages_msg], 1, $PPRINT_COLOR_SUBTITLE)
1189 ], [
1190 PPRINT_PROP_STRING([build_man_pages_msg],
1191 [${PPRINT_COLOR_BLDGRN}yes (already built)],
1192 $PPRINT_COLOR_SUBTITLE)
1193 ])
008559fa 1194 ])
a3eae3c9
PP
1195], [
1196 PPRINT_PROP_BOOL([build_man_pages_msg], 0, $PPRINT_COLOR_SUBTITLE)
008559fa
PP
1197])
1198
a3eae3c9
PP
1199m4_popdef([build_man_pages_msg])
1200
4fc83d94
PP
1201test "x$embedded_help" = xyes && value=1 || value=0
1202PPRINT_PROP_BOOL([Embed --help messages], $value, $PPRINT_COLOR_SUBTITLE)
1203
a3eae3c9 1204PPRINT_SET_INDENT(1)
008559fa 1205
9d8c7763
JG
1206report_bindir="`eval eval echo $bindir`"
1207report_libdir="`eval eval echo $libdir`"
1208
1209# Print the bindir and libdir this `make install' will install into.
1210AS_ECHO
1211PPRINT_SUBTITLE([Install directories])
1212PPRINT_PROP_STRING([Binaries], [$report_bindir])
1213PPRINT_PROP_STRING([Libraries], [$report_libdir])
1214
1215AS_ECHO
1216PPRINT_SUBTITLE([Search directories])
008559fa
PP
1217
1218# If we build the sessiond, print the paths it will use
4601fcce 1219AS_IF([test "$SESSIOND_BIN" = ""],[
9d8c7763 1220 path="$report_bindir/lttng-sessiond"
4601fcce 1221],[
9d8c7763 1222 path="$SESSIOND_BIN"
4601fcce 1223])
9d8c7763 1224PPRINT_PROP_STRING([lttng-sessiond executable], [$path])
b8ec3da8 1225
4601fcce 1226AS_IF([test "$CONSUMERD32_BIN" = ""],[
9d8c7763 1227 path="`eval eval echo $lttnglibexecdir`/lttng-consumerd"
4601fcce 1228],[
9d8c7763 1229 path="$CONSUMERD32_BIN"
4601fcce 1230])
9d8c7763 1231PPRINT_PROP_STRING([32-bit lttng-consumerd executable], [$path])
994dd8a4 1232
4601fcce 1233AS_IF([test "$CONSUMERD32_LIBDIR" = ""],[
9d8c7763 1234 path="`eval eval echo $libdir`"
4601fcce 1235],[
9d8c7763 1236 path="$CONSUMERD32_LIBDIR"
4601fcce 1237])
9d8c7763 1238PPRINT_PROP_STRING([32-bit consumer libraries], [$path])
994dd8a4 1239
4601fcce 1240AS_IF([test "$CONSUMERD64_BIN" = ""],[
9d8c7763 1241 path="`eval eval echo $lttnglibexecdir`/lttng-consumerd"
4601fcce 1242],[
9d8c7763 1243 path="$CONSUMERD64_BIN"
4601fcce 1244])
9d8c7763 1245PPRINT_PROP_STRING([64-bit lttng-consumerd executable], [$path])
994dd8a4 1246
4601fcce 1247AS_IF([test "$CONSUMERD64_LIBDIR" = ""],[
9d8c7763 1248 path="`eval eval echo $libdir`"
4601fcce 1249],[
9d8c7763 1250 path="$CONSUMERD64_LIBDIR"
994dd8a4 1251])
9d8c7763 1252PPRINT_PROP_STRING([64-bit consumer libraries], [$path])
a24d43ae
PP
1253PPRINT_SET_INDENT(0)
1254
1255AS_IF([test "x$warn_prebuilt_man_pages" = "xyes" ], [
1256 AS_ECHO
1257 PPRINT_WARN([You need asciidoc and xmlto to build the LTTng-tools man pages.
1258
1259Note that the man pages are already built in this distribution tarball,
1260therefore asciidoc and xmlto are only needed if you intend to modify
1261their sources.
1262
1263Also note that the installed man pages will contain the project's
1264default command-line option and environment variable values.
1265
1266Use --disable-man-pages to completely disable building and installing
1267the man pages.])
1268])
This page took 0.119071 seconds and 5 git commands to generate.