Bump LTTng MI schema to 3.0
[lttng-tools.git] / configure.ac
CommitLineData
5d5baaa3 1AC_PREREQ([2.64])
107de7f1 2AC_INIT([lttng-tools],[2.8.0-pre],[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
ebd4b25d 11AM_INIT_AUTOMAKE([foreign dist-bzip2 no-dist-gzip tar-pax])
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
b7d2e95f
MJ
17# Checks for C compiler
18AC_USE_SYSTEM_EXTENSIONS
19AC_SYS_LARGEFILE
20AC_PROG_CC
21AC_PROG_CC_STDC
22
23# Checks for programs.
24AC_PROG_GREP
25AC_PROG_LEX
26AC_PROG_MAKE_SET
81265501 27AC_PROG_SED
b7d2e95f
MJ
28AC_PROG_YACC
29LT_INIT
30
65385a82
MJ
31# Check for objcopy, required by the base address statedump and dynamic linker tests
32AC_CHECK_TOOL([OBJCOPY], objcopy, no)
33AS_IF([test "x$OBJCOPY" = xno],
34 [AC_MSG_WARN([Cannont find objcopy. The base address statedump and dynamic linker tests will be disabled. Install the binutils package to remediate this.])]
35)
36AM_CONDITIONAL([HAVE_OBJCOPY], [test "x$OBJCOPY" != xno])
37
b7d2e95f
MJ
38# Checks for typedefs, structures, and compiler characteristics.
39AC_C_INLINE
40AC_TYPE_INT32_T
41AC_TYPE_INT64_T
42AC_TYPE_MODE_T
43AC_TYPE_OFF_T
44AC_TYPE_PID_T
45AC_TYPE_SIZE_T
46AC_TYPE_SSIZE_T
47AC_TYPE_UID_T
48AC_TYPE_UINT16_T
49AC_TYPE_UINT32_T
50AC_TYPE_UINT64_T
51AC_TYPE_UINT8_T
52
53AX_C___ATTRIBUTE__
54AS_IF([test "x$ax_cv___attribute__" = "xyes"],
55 [:],
56 [AC_MSG_ERROR([The compiler does not support __attribute__ extensions])])
57
58AX_PTHREAD(,[AC_MSG_ERROR([Could not configure pthreads support])])
59LIBS="$PTHREAD_LIBS $LIBS"
60CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
61CC="$PTHREAD_CC"
62
507af6fc
MJ
63AX_LIB_SOCKET_NSL
64
b7d2e95f 65# Compute minor/major/patchlevel version numbers
18ecc6ae
MJ
66major_version=$(echo AC_PACKAGE_VERSION | $SED 's/^\([[0-9]]\)*\.[[0-9]]*\.[[0-9]]*.*$/\1/')
67minor_version=$(echo AC_PACKAGE_VERSION | $SED 's/^[[0-9]]*\.\([[0-9]]*\)\.[[0-9]]*.*$/\1/')
68patchlevel_version=$(echo AC_PACKAGE_VERSION | $SED 's/^[[0-9]]*\.[[0-9]]*\.\([[0-9]]*\).*$/\1/')
81265501
MD
69AC_SUBST([MAJOR_VERSION], [$major_version])
70AC_SUBST([MINOR_VERSION], [$minor_version])
71AC_SUBST([PATCHLEVEL_VERSION], [$patchlevel_version])
8eaee515
DG
72AC_DEFINE_UNQUOTED([VERSION_MAJOR], $major_version, [LTTng-Tools major version number])
73AC_DEFINE_UNQUOTED([VERSION_MINOR], $minor_version, [LTTng-Tools minor version number])
74AC_DEFINE_UNQUOTED([VERSION_PATCHLEVEL], $patchlevel_version, [LTTng-Tools patchlevel version number])
81265501 75
34f69498
JG
76version_name="Herbe à Détourne"
77version_description='Brewed with unrestrained amounts of Citra hop, the Herbe à Détourne is a fantastic New World Tripel brewed by "Dieu du Ciel!". Aromas of mango, cantaloupe melon and passion fruit, combined with a controlled bitter finish, unite in making this smooth golden-orange beer stand apart.'
18ecc6ae 78version_description_c=$(echo $version_description | $SED 's/"/\\"/g')
0e4cbe7e
DG
79
80AC_DEFINE_UNQUOTED([VERSION_NAME], ["$version_name"], "")
34f69498 81AC_DEFINE_UNQUOTED([VERSION_DESCRIPTION], ["$version_description_c"], "")
c6d4a597 82
6bd5984c
CB
83# libtool link_all_deplibs fixup. See http://bugs.lttng.org/issues/321.
84AC_ARG_ENABLE(libtool-linkdep-fixup,
85 AS_HELP_STRING([--disable-libtool-linkdep-fixup],
86 [disable the libtool fixup for linking all dependent libraries (link_all_deplibs)]),
87 libtool_fixup=$enableval,
88 libtool_fixup=yes)
89
90AS_IF([test "x$libtool_fixup" = "xyes"],
91 [
b7d2e95f 92 libtool_m4="$srcdir/m4/libtool.m4"
6bd5984c
CB
93 libtool_flag_pattern=".*link_all_deplibs\s*,\s*\$1\s*)"
94 AC_MSG_CHECKING([for occurence(s) of link_all_deplibs = no in $libtool_m4])
18ecc6ae 95 libtool_flag_pattern_count=$($GREP -c "$libtool_flag_pattern\s*=\s*no" $libtool_m4)
6bd5984c
CB
96 AS_IF([test $libtool_flag_pattern_count -ne 0],
97 [
98 AC_MSG_RESULT([$libtool_flag_pattern_count])
99 AC_MSG_WARN([the detected libtool will not link all dependencies, forcing link_all_deplibs = unknown])
06884be1 100 $SED -i "s/\($libtool_flag_pattern\)\s*=\s*no/\1=unknown/g" $libtool_m4
6bd5984c
CB
101 ],
102 [
103 AC_MSG_RESULT([none])
104 ])
105 ])
106
347e0f14
CB
107AM_CONDITIONAL([NO_SHARED], [test x$enable_shared = xno])
108
fac6795d
DG
109AC_CHECK_HEADERS([ \
110 sys/types.h unistd.h fcntl.h string.h pthread.h limits.h \
111 signal.h stdlib.h sys/un.h sys/socket.h stdlib.h stdio.h \
d23e7e44
JR
112 getopt.h sys/ipc.h sys/shm.h popt.h grp.h arpa/inet.h \
113 netdb.h netinet/in.h paths.h stddef.h sys/file.h sys/ioctl.h \
114 sys/mount.h sys/param.h sys/time.h
fac6795d
DG
115])
116
b89ff596
JR
117# Basic functions check
118AC_CHECK_FUNCS([ \
afc5df03 119 atexit bzero clock_gettime dup2 fdatasync fls ftruncate \
b89ff596
JR
120 gethostbyname gethostname getpagesize localtime_r memchr memset \
121 mkdir munmap putenv realpath rmdir socket strchr strcspn strdup \
f5436bfc 122 strncasecmp strndup strnlen strpbrk strrchr strstr strtol strtoul \
507af6fc 123 strtoull dirfd gethostbyname2 getipnodebyname \
b89ff596 124])
7d617f1d 125
0c95f5b2
DG
126# Babeltrace viewer check
127AC_ARG_WITH([babeltrace-bin],
128 AS_HELP_STRING([--with-babeltrace-bin],
129 [Location of the babeltrace viewer executable (including the filename)]),
130 [BABELTRACE_BIN="$withval"],
131 [BABELTRACE_BIN=''])
132AC_SUBST([BABELTRACE_BIN])
133
134# lttv-gui
135AC_ARG_WITH([lttv-gui-bin],
136 AS_HELP_STRING([--with-lttv-gui-bin],
137 [Location of the lttv GUI viewer executable (including the filename)]),
138 [LTTV_GUI_BIN="$withval"],
139 [LTTV_GUI_BIN=''])
140AC_SUBST([LTTV_GUI_BIN])
141
fc7a59ce
AM
142AC_ARG_WITH([consumerd32-bin],
143 AS_HELP_STRING([--with-consumerd32-bin],
144 [Location of the 32-bit consumerd executable (including the filename)]),
145 [CONSUMERD32_BIN="$withval"],
146 [CONSUMERD32_BIN=''])
147AC_SUBST([CONSUMERD32_BIN])
ebaeda94 148
fc7a59ce
AM
149AC_ARG_WITH([consumerd64-bin],
150 AS_HELP_STRING([--with-consumerd64-bin],
151 [Location of the 64-bit consumerd executable (including the filename)]),
152 [CONSUMERD64_BIN="$withval"],
153 [CONSUMERD64_BIN=''])
154AC_SUBST([CONSUMERD64_BIN])
ebaeda94
MD
155
156AC_ARG_WITH([consumerd32-libdir],
a4b279ba 157 AS_HELP_STRING([--with-consumerd32-libdir],
fc7a59ce 158 [Directory containing the 32-bit consumerd libraries]),
ebaeda94
MD
159 [CONSUMERD32_LIBDIR="$withval"],
160 [CONSUMERD32_LIBDIR=''])
161AC_SUBST([CONSUMERD32_LIBDIR])
162
ec029701 163AC_ARG_WITH([consumerd64-libdir],
a4b279ba 164 AS_HELP_STRING([--with-consumerd64-libdir],
fc7a59ce 165 [Directory containing the 64-bit consumerd libraries]),
ebaeda94
MD
166 [CONSUMERD64_LIBDIR="$withval"],
167 [CONSUMERD64_LIBDIR=''])
168AC_SUBST([CONSUMERD64_LIBDIR])
169
b8ec3da8
SM
170AC_ARG_WITH([sessiond-bin],
171 AS_HELP_STRING([--with-sessiond-bin],
172 [Location of the sessiond executable (including the filename)]),
173 [SESSIOND_BIN="$withval"],
174 [SESSIOND_BIN=''])
175AC_SUBST([SESSIOND_BIN])
176
d386c872
MD
177AC_ARG_WITH([lttng-system-rundir],
178 AS_HELP_STRING([--with-lttng-system-rundir],
179 [Location of the system directory where the system-wide lttng-sessiond runtime files are kept. The default is "/var/run/lttng".]),
180 [LTTNG_SYSTEM_RUNDIR="$withval"],
181 [LTTNG_SYSTEM_RUNDIR="/var/run/lttng"])
182AC_SUBST([LTTNG_SYSTEM_RUNDIR])
183
839a9569
MJ
184AC_ARG_ENABLE([test-java-agent-jul],
185 [AS_HELP_STRING([--enable-test-java-agent-jul],[enable the LTTng UST Java agent JUL tests [default=no]])],
186 [test_java_agent_jul=$enableval],
187 [test_java_agent_jul=no]
188)
189
190AC_ARG_ENABLE([test-java-agent-log4j],
191 [AS_HELP_STRING([--enable-test-java-agent-log4j],[enable the LTTng UST Java agent Log4j tests [default=no]])],
192 [test_java_agent_log4j=$enableval],
193 [test_java_agent_log4j=no]
194)
195
196AC_ARG_ENABLE([test-java-agent-all],
197 [AS_HELP_STRING([--enable-test-java-agent-all],[enable all the LTTng UST Java agent tests [default=no]])],
198 [test_java_agent_jul=$enableval
199 test_java_agent_log4j=$enableval],
200 [:]
201)
202
fb6f1fa2
YB
203AC_DEFINE_UNQUOTED([CONFIG_CONSUMERD32_BIN], "$CONSUMERD32_BIN", [Location of the 32-bit consumerd executable.])
204AC_DEFINE_UNQUOTED([CONFIG_CONSUMERD64_BIN], "$CONSUMERD64_BIN", [Location of the 64-bit consumerd executable])
205AC_DEFINE_UNQUOTED([CONFIG_CONSUMERD32_LIBDIR], "$CONSUMERD32_LIBDIR", [Search for consumerd 32-bit libraries in this location.])
206AC_DEFINE_UNQUOTED([CONFIG_CONSUMERD64_LIBDIR], "$CONSUMERD64_LIBDIR", [Search for consumerd 64-bit libraries in this location.])
0c95f5b2
DG
207AC_DEFINE_UNQUOTED([CONFIG_BABELTRACE_BIN], "$BABELTRACE_BIN", [Location of the babeltrace viewer executable.])
208AC_DEFINE_UNQUOTED([CONFIG_LTTV_GUI_BIN], "$LTTV_GUI_BIN", [Location of the lttv GUI viewer executable.])
b8ec3da8 209AC_DEFINE_UNQUOTED([CONFIG_SESSIOND_BIN], "$SESSIOND_BIN", [Location of the sessiond executable.])
d386c872 210AC_DEFINE_UNQUOTED([CONFIG_LTTNG_SYSTEM_RUNDIR], ["$LTTNG_SYSTEM_RUNDIR"], [LTTng system runtime directory])
43cadc7e 211
26296c48
JG
212if test "x$prefix" = "xNONE"; then
213 prefix=$ac_default_prefix
214fi
215CONFDIR=`eval echo $sysconfdir`
216AC_SUBST(CONFDIR)
217AC_DEFINE_UNQUOTED([CONFIG_LTTNG_SYSTEM_CONFIGDIR],"$CONFDIR", [LTTng system configuration directory.])
218
dcf266c0
JG
219AC_DEFINE_DIR([CONFIG_LTTNG_SYSTEM_DATADIR],[datadir], [LTTng system data directory.])
220
26296c48 221#
fac6795d
DG
222# Check for pthread
223AC_CHECK_LIB([pthread], [pthread_create], [],
a9caac65 224 [AC_MSG_ERROR([Cannot find libpthread. Use LDFLAGS=-Ldir to specify its location.])]
fac6795d
DG
225)
226
227# Check libpopt
e9cee23a
SM
228PKG_CHECK_MODULES([POPT], [popt],
229 [LIBS="$LIBS $POPT_LIBS"],
a9caac65
JR
230 [
231 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])
232 AC_MSG_WARN([Finding libpopt without pkg-config.])
233 AC_CHECK_LIB([popt],
234 [poptGetContext],
235 [],
236 [
237 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])
238 ]
239 )
240 ]
fac6795d
DG
241)
242
3c038aa8 243AM_PATH_XML2(2.7.6, true, AC_MSG_ERROR(No supported version of libxml2 found.))
6c1494fd 244
ffe60014 245# Check for libuuid
e9cee23a 246PKG_CHECK_MODULES([UUID], [uuid],
ffe60014 247[
e9cee23a 248 LIBS="$LIBS $UUID_LIBS"
ffe60014
DG
249 AC_DEFINE_UNQUOTED([LTTNG_HAVE_LIBUUID], 1, [Has libuuid support.])
250 have_libuuid=yes
251],
252[
a9caac65
JR
253 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])
254 AC_MSG_WARN([Finding libuuid without pkg-config.])
255 AC_CHECK_LIB([uuid],
256 [uuid_generate],
257 [
258 AC_DEFINE_UNQUOTED([LTTNG_HAVE_LIBUUID], 1, [Has libuuid support.])
259 have_libuuid=yes
260 ],
261 [
262 # libuuid not found, check for uuid_create in libc.
263 AC_CHECK_LIB([c],
264 [uuid_create],
265 [
266 AC_DEFINE_UNQUOTED([LTTNG_HAVE_LIBC_UUID], 1, [Has libc uuid support.])
267 have_libc_uuid=yes
268 ],
269 [
270 AC_MSG_ERROR([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])
271 ]
272 )
273 ]
274 )
275])
ffe60014
DG
276AM_CONDITIONAL([LTTNG_BUILD_WITH_LIBUUID], [test "x$have_libuuid" = "xyes"])
277AM_CONDITIONAL([LTTNG_BUILD_WITH_LIBC_UUID], [test "x$have_libc_uuid" = "xyes"])
278
6e59ae26 279# URCU library version needed or newer
8bdee6e2 280liburcu_version=">= 0.8.0"
6e59ae26 281
3ffccaed 282# Check liburcu needed function calls
fac6795d 283AC_CHECK_DECL([cds_list_add], [],
8e12081b 284 [AC_MSG_ERROR([liburcu $liburcu_version or newer is needed])], [[#include <urcu/list.h>]]
fac6795d 285)
8bdee6e2
SM
286AC_CHECK_DECL([cds_wfcq_init], [],
287 [AC_MSG_ERROR([liburcu $liburcu_version or newer is needed])], [[#include <urcu/wfcqueue.h>]]
8e12081b 288)
8bdee6e2
SM
289AC_CHECK_DECL([cds_wfcq_dequeue_blocking], [],
290 [AC_MSG_ERROR([liburcu $liburcu_version or newer is needed])], [[#include <urcu/wfcqueue.h>]]
487cf67c 291)
8e12081b
DG
292AC_CHECK_DECL([futex_async], [],
293 [AC_MSG_ERROR([liburcu $liburcu_version or newer is needed])], [[#include <urcu/futex.h>]]
099e26bd 294)
3ffccaed
DG
295AC_CHECK_DECL([rcu_thread_offline], [],
296 [AC_MSG_ERROR([liburcu $liburcu_version or newer is needed])], [[#include <urcu.h>]]
297)
298AC_CHECK_DECL([rcu_thread_online], [],
299 [AC_MSG_ERROR([liburcu $liburcu_version or newer is needed])], [[#include <urcu.h>]]
300)
6e59ae26
DG
301AC_CHECK_DECL([caa_likely], [],
302 [AC_MSG_ERROR([liburcu $liburcu_version or newer is needed])], [[#include <urcu.h>]]
303)
e6b66098
YB
304#Function added in urcu 0.7.0
305AC_CHECK_DECL([cmm_smp_mb__before_uatomic_or], [],
306 [AC_MSG_ERROR([liburcu $liburcu_version or newer is needed])], [[#include <urcu.h>]]
307)
6e59ae26 308
234170ac
UTL
309# Check kmod library
310AC_ARG_WITH(kmod-prefix,
311 AS_HELP_STRING([--with-kmod-prefix=PATH],
312 [Specify the installation prefix of the kmod library.
313 Headers must be in PATH/include; libraries in PATH/lib.]),
314 [
315 CPPFLAGS="$CPPFLAGS -I${withval}/include"
316 LDFLAGS="$LDFLAGS -L${withval}/lib64 -L${withval}/lib"
317 ])
318
319AC_ARG_ENABLE(kmod,
320 AS_HELP_STRING([--disable-kmod],[build without kmod support]),
321 kmod_support=zz$enableval, kmod_support=yes)
322
323AS_IF([test "x$kmod_support" = "xyes"], [
324 AC_CHECK_LIB([kmod], [kmod_module_probe_insert_module],
325 [
326 AC_DEFINE([HAVE_KMOD], [1], [has kmod support])
327 LIBS="$LIBS -lkmod"
328 kmod_found=yes
329 ],
330 kmod_found=no
331 )
332])
333AM_CONDITIONAL([HAVE_KMOD], [test "x$kmod_found" = xyes])
334
b91dd016
SS
335AC_ARG_WITH(lttng-ust-prefix,
336 AS_HELP_STRING([--with-lttng-ust-prefix=PATH],
337 [Specify the installation prefix of the lttng-ust library.
338 Headers must be in PATH/include; libraries in PATH/lib.]),
339 [
340 CPPFLAGS="$CPPFLAGS -I${withval}/include"
341 LDFLAGS="$LDFLAGS -L${withval}/lib64 -L${withval}/lib"
342 ])
343
74d0b642 344# Check liblttng-ust-ctl library
a069e9a8
JR
345AC_ARG_WITH(lttng-ust,
346 AS_HELP_STRING([--without-lttng-ust],[build without LTTng-UST (Userspace Tracing) support]),
db08491b 347 lttng_ust_support=$withval, lttng_ust_support=yes)
74d0b642 348
6299f964 349AS_IF([test "x$lttng_ust_support" = "xyes"], [
b33f11e2 350 AC_CHECK_LIB([lttng-ust-ctl], [ustctl_recv_channel_from_consumer],
082d0908
CB
351 [
352 AC_DEFINE([HAVE_LIBLTTNG_UST_CTL], [1], [has LTTng-UST control support])
353 lttng_ust_ctl_found=yes
354 ],
aaa3a193 355 [AC_MSG_ERROR([Cannot find LTTng-UST >= 2.2.x. Use --with-lttng-ust-prefix=PREFIX to specify its location, or specify --without-lttng-ust to build lttng-tools without LTTng-UST support.])],
0d8f86e9 356 [-lurcu-common -lurcu-bp -lurcu-cds -lrt -ldl]
74d0b642 357 )
6299f964 358])
082d0908 359AM_CONDITIONAL([HAVE_LIBLTTNG_UST_CTL], [test "x$lttng_ust_ctl_found" = xyes])
281047b8 360AC_CHECK_FUNCS([sched_getcpu sysconf sync_file_range])
f6a9efaa 361
6816a5cb
MD
362# check for dlopen
363AC_CHECK_LIB([dl], [dlopen],
364[
365 have_libdl=yes
366],
367[
368 #libdl not found, check for dlopen in libc.
369 AC_CHECK_LIB([c], [dlopen],
370 [
371 have_libc_dl=yes
372 ],
373 [
374 AC_MSG_ERROR([Cannot find dlopen in libdl nor libc. Use [LDFLAGS]=-Ldir to specify their location.])
375 ])
376])
377AM_CONDITIONAL([LTTNG_TOOLS_BUILD_WITH_LIBDL], [test "x$have_libdl" = "xyes"])
378AM_CONDITIONAL([LTTNG_TOOLS_BUILD_WITH_LIBC_DL], [test "x$have_libc_dl" = "xyes"])
379
53a80697
MD
380# Check for fmemopen
381AC_CHECK_LIB([c], [fmemopen],
382[
383 AC_DEFINE_UNQUOTED([LTTNG_HAVE_FMEMOPEN], 1, [Has fmemopen support.])
384]
385)
386
387# Check for open_memstream
388AC_CHECK_LIB([c], [open_memstream],
389[
390 AC_DEFINE_UNQUOTED([LTTNG_HAVE_OPEN_MEMSTREAM], 1, [Has open_memstream support.])
391]
392)
393
ceb6ba51
DG
394AC_ARG_ENABLE([git-version],
395 [AC_HELP_STRING([--disable-git-version],
396 [Do not use the git version for the build])],
4c6ac053 397 [have_git_version=$enableval], [have_git_version=yes]
ceb6ba51 398)
4c6ac053
MD
399
400AM_CONDITIONAL([LTTNG_TOOLS_BUILD_GIT_SOURCE],
401 [test "x${have_git_version}" = "xyes"])
ceb6ba51 402
36907cb5
DS
403# For Python
404# SWIG version needed or newer:
405swig_version=2.0.0
406
407AC_ARG_ENABLE([python-bindings],
408 [AC_HELP_STRING([--enable-python-bindings],
409 [compile Python bindings])],
9c444542 410 [enable_python_binding=yes], [enable_python_binding=no])
36907cb5 411
9c444542 412AM_CONDITIONAL([PYTHON_BINDING], [test "x${enable_python_binding:-yes}" = xyes])
36907cb5 413
9c444542 414if test "x${enable_python_binding:-yes}" = xyes; then
36907cb5 415 AX_PKG_SWIG($swig_version, [], [ AC_MSG_ERROR([SWIG $swig_version or newer is needed]) ])
56aa2354 416 AM_PATH_PYTHON([3.0])
36907cb5
DS
417
418 AC_ARG_VAR([PYTHON_INCLUDE], [Include flags for python, bypassing python-config])
419 AC_ARG_VAR([PYTHON_CONFIG], [Path to python-config])
420 AS_IF([test -z "$PYTHON_INCLUDE"], [
421 AS_IF([test -z "$PYTHON_CONFIG"], [
422 AC_PATH_PROGS([PYTHON_CONFIG],
423 [python$PYTHON_VERSION-config python-config],
424 [no],
425 [`dirname $PYTHON`])
426 AS_IF([test "$PYTHON_CONFIG" = no], [AC_MSG_ERROR([cannot find python-config for $PYTHON. Do you have python-dev installed?])])
427 ])
428 AC_MSG_CHECKING([python include flags])
429 PYTHON_INCLUDE=`$PYTHON_CONFIG --includes`
430 AC_MSG_RESULT([$PYTHON_INCLUDE])
431 ])
432
433else
434 AC_MSG_NOTICE([You may configure with --enable-python-bindings ]dnl
435[if you want Python bindings.])
436
437fi
438
3ffccaed 439# Epoll check. If not present, the build will fallback on poll() API
71615260
DG
440AX_HAVE_EPOLL(
441 [AX_CONFIG_FEATURE_ENABLE(epoll)],
442 [AX_CONFIG_FEATURE_DISABLE(epoll)]
443)
71615260
DG
444AX_CONFIG_FEATURE(
445 [epoll], [This platform supports epoll(7)],
446 [HAVE_EPOLL], [This platform supports epoll(7).],
447 [enable_epoll="yes"], [enable_epoll="no"]
448)
71615260
DG
449AM_CONDITIONAL([COMPAT_EPOLL], [ test "$enable_epoll" = "yes" ])
450
839a9569
MJ
451AM_CONDITIONAL([TEST_JAVA_JUL_AGENT], [test "x$test_java_agent_jul" = "xyes"])
452AM_CONDITIONAL([TEST_JAVA_LOG4J_AGENT], [test "x$test_java_agent_log4j" = "xyes"])
37175ce4 453
839a9569
MJ
454if test "x$test_java_agent_jul" = "xyes" || test "x$test_java_agent_log4j" = "xyes"; then
455 AX_JAVA_OPTIONS
456 AX_PROG_JAVAC
457 AX_PROG_JAVA
458 AX_PROG_JAR
37175ce4 459
839a9569 460 AX_CHECK_CLASSPATH
504d4ace 461
839a9569
MJ
462 # Check for Java UST agent common class first
463 AX_CHECK_CLASS(org.lttng.ust.agent.AbstractLttngAgent)
464 if test "x$ac_cv_class_org_lttng_ust_agent_AbstractLttngAgent" = "xno"; then
465 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 466 fi
0b7af945 467
839a9569
MJ
468 if test "x$test_java_agent_jul" = "xyes"; then
469 # Check for JUL agent class
470 AX_CHECK_CLASS(org.lttng.ust.agent.jul.LttngLogHandler)
471 if test "x$ac_cv_class_org_lttng_ust_agent_jul_LttngLogHandler" = "xno"; then
472 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
473 fi
474 fi
475
839a9569
MJ
476 if test "x$test_java_agent_log4j" = "xyes"; then
477 # Check for Log4j agent class
478 AX_CHECK_CLASS(org.lttng.ust.agent.log4j.LttngLogAppender)
479 if test "x$ac_cv_class_org_lttng_ust_agent_log4j_LttngLogAppender" = "xno"; then
480 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"])
481 fi
0b7af945 482
839a9569
MJ
483 # Check for Log4j class
484 AX_CHECK_CLASS(org.apache.log4j.Logger)
485 if test "x$ac_cv_class_org_apache_log4j_Logger" = "xno"; then
486 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"])
487 fi
488 fi
489fi
37175ce4 490
9586c198
JR
491# Python agent test
492UST_PYTHON_AGENT="lttngust"
493
494AC_ARG_ENABLE(test-python2-agent,
495 AS_HELP_STRING([--enable-test-python2-agent],
496 [enable tests for python2 agent. Python2 interpreter path can be overridden by setting the PYTHON2 environment variable. Default: Autodetect]
497 ),[:],[test_python2_agent_autodetect=yes]
498)
499
500AC_ARG_ENABLE(test-python3-agent,
501 AS_HELP_STRING([--enable-test-python3-agent],
502 [enable tests for python3 agent. Python3 interpreter path can be overridden by setting the PYTHON3 environment variable. Default: Autodetect]
503 ),[:],[test_python3_agent_autodetect=yes]
504)
505
506AC_ARG_ENABLE(test-python-agent-all,
507 AS_HELP_STRING([--enable-test-python-agent-all],
508 [enable test for all python{2/3} agent.]
509 ),
510)
511
512AS_IF([test ! -z "$enable_test_python_agent_all"], [
513 unset test_python2_agent_autodetect
514 unset test_python3_agent_autodetect
515])
516
517AS_IF([test "x$enable_test_python_agent_all" = "xyes"], [
518 enable_test_python2_agent=yes
519 enable_test_python3_agent=yes
520])
521
522AS_IF([test "x$enable_test_python_agent_all" = "xno"], [
523 enable_test_python2_agent=no
524 enable_test_python3_agent=no
525])
526
527
528AS_IF([test "x$enable_test_python2_agent" = "xyes" -o "x$test_python2_agent_autodetect" = "xyes" ], [
529 AS_IF([test -z "$PYTHON2"], [
530 PYTHON2=python2
531 ], [
532 AC_MSG_WARN([Using user-defined PYTHON2 ($PYTHON2) for lttng-ust python2 agent check])
533 ])
534
535 AC_PATH_PROG([PYTHON2_BIN],[$PYTHON2])
536 AS_IF([test -z "$PYTHON2_BIN"], [
537 AS_IF([test -z "$test_python2_agent_autodetect"],[
538 AC_MSG_ERROR([No python2 interpreter found. PYTHON2 can be set to override default interpreter path])
539 ])
540 ], [
541 AC_MSG_CHECKING([for python2 lttng-ust agent])
542 AS_IF([$PYTHON2_BIN -c "import $UST_PYTHON_AGENT" 2>/dev/null], [
543 PYTHON2_AGENT=$PYTHON2_BIN
544 AC_MSG_RESULT([yes])
545 RUN_PYTHON_AGENT_TEST=yes
546 ], [
547 AC_MSG_RESULT([no])
548 AS_IF([test -z "$test_python2_agent_autodetect"],[
549 AC_MSG_ERROR([No python2 agent found. The path to the agent can be specified by setting the PYTHONPATH environment variable.])
550 ])
551 ])
552
553 ])
554
555])
556
557AS_IF([test "x$enable_test_python3_agent" = "xyes" -o "x$test_python3_agent_autodetect" = "xyes" ], [
558 AS_IF([test -z "$PYTHON3"], [
559 PYTHON3=python3
560 ], [
561 AC_MSG_WARN([Using user-defined PYTHON3 ($PYTHON3) for lttng-ust python3 agent check])
562 ])
563
564 AC_PATH_PROG([PYTHON3_BIN],[$PYTHON3])
565 AS_IF([test -z "$PYTHON3_BIN"], [
566 AS_IF([test -z "$test_python3_agent_autodetect"],[
567 AC_MSG_ERROR([No python3 interpreter found. PYTHON3 can be set to override default interpreter path])
568 ])
569 ], [
570 AC_MSG_CHECKING([for python3 lttng-ust agent])
571 AS_IF([$PYTHON3_BIN -c "import $UST_PYTHON_AGENT" 2>/dev/null], [
572 PYTHON3_AGENT=$PYTHON3_BIN
573 AC_MSG_RESULT([yes])
574 RUN_PYTHON_AGENT_TEST=yes
575 ], [
576 AC_MSG_RESULT([no])
577 AS_IF([test -z "$test_python3_agent_autodetect"],[
578 AC_MSG_ERROR([No python3 agent found. The path to the agent can be specified by setting the PYTHONPATH environment variable.])
579 ])
580 ])
581
582 ])
583])
9586c198
JR
584AC_SUBST([RUN_PYTHON_AGENT_TEST])
585AC_SUBST([PYTHON2_AGENT])
586AC_SUBST([PYTHON3_AGENT])
587
87fb9fc0
JR
588# Arguments for binaries build exclusion
589AC_ARG_ENABLE([bin-lttng], AS_HELP_STRING([--disable-bin-lttng],[Disable the build of lttng binaries]))
590AC_ARG_ENABLE([bin-lttng-consumerd], AS_HELP_STRING([--disable-bin-lttng-consumerd],
591 [Disable the build of lttng-consumerd binaries]))
592AC_ARG_ENABLE([bin-lttng-crash], AS_HELP_STRING([--disable-bin-lttng-crash],[Disable the build of lttng-crash binaries]))
593AC_ARG_ENABLE([bin-lttng-relayd], AS_HELP_STRING([--disable-bin-lttng-relayd],
594 [Disable the build of lttng-relayd binaries]))
595AC_ARG_ENABLE([bin-lttng-sessiond], AS_HELP_STRING([--disable-bin-lttng-sessiond],
596 [Disable the build of lttng-sessiond binaries]))
597AC_ARG_ENABLE([extras], AS_HELP_STRING([--disable-extras],
598 [Disable the build of the extra components]))
599
600
601# Always build libconfig since it a dependency of libcommon
602build_lib_config=yes
603
604build_lib_compat=no
605build_lib_consumer=no
606build_lib_hashtable=no
607build_lib_health=no
608build_lib_index=no
609build_lib_kernel_consumer=no
610build_lib_kernel_ctl=no
611build_lib_lttng_ctl=no
612build_lib_relayd=no
613build_lib_sessiond_comm=no
614build_lib_testpoint=no
615build_lib_ust_consumer=no
616
617# There is an overlap for enabled dependencies, but this makes everything
618# simpler. libcommon and libconfig are always compiled so they are not repeated
619# here.
620
621# Enable binary dependencies.
622AS_IF([test x$enable_bin_lttng != xno],
623 [
624 build_lib_lttng_ctl=yes
625 ]
626)
627
628AS_IF([test x$enable_bin_lttng_consumerd != xno],
629 [
630 build_lib_consumer=yes
631 build_lib_sessiond_comm=yes
632 build_lib_index=yes
633 build_lib_health=yes
634 build_lib_testpoint=yes
635 ]
636)
637
638AS_IF([test x$enable_bin_lttng_crash != xno],
639 # Do nothing since libconfig and libcommon are built by default.
640 []
641)
642
643AS_IF([test x$enable_bin_lttng_relayd != xno],
644 [
645 build_lib_lttng_ctl=yes
646 build_lib_sessiond_comm=yes
647 build_lib_hashtable=yes
648 build_lib_compat=yes
649 build_lib_index=yes
650 build_lib_health=yes
651 build_lib_testpoint=yes
652 ]
653)
654AS_IF([test x$enable_bin_lttng_sessiond != xno],
655 [
656 build_lib_lttng_ctl=yes
657 build_lib_sessiond_comm=yes
658 build_lib_kernel_ctl=yes
659 build_lib_hashtable=yes
660 build_lib_compat=yes
661 build_lib_relayd=yes
662 build_lib_testpoint=yes
663 build_lib_health=yes
664 build_lib_health=yes
665 ]
666)
667
668# Libraries dependencies enabling
669AS_IF([test x$build_lib_lttng_ctl = xyes],
670 [
671 build_lib_sessiond_comm=yes
672 build_lib_hashtable=yes
673 ]
674)
675
676AS_IF([test x$build_lib_consumer = xyes],
677 [
678 build_lib_sessiond_comm=yes
679 build_lib_kernel_consumer=yes
680 build_lib_hashtable=yes
681 build_lib_compat=yes
682 build_lib_relayd=yes
683 AS_IF([test x$lttng_ust_ctl_found = xyes],[build_lib_ust_consumer=yes])
684 ]
685)
686
687AS_IF([test x$build_lib_kernel_consumer = xyes],
688 [
689 build_lib_kernel_ctl=yes
690 build_lib_relayd=yes
691 ]
692)
693
694AS_IF([test x$build_lib_relayd = xyes],
695 [
696 build_lib_sessiond_comm=yes
697 ]
698)
699
700
701# Export binaries build conditions.
702AM_CONDITIONAL([BUILD_BIN_LTTNG], [test x$enable_bin_lttng != xno])
703AM_CONDITIONAL([BUILD_BIN_LTTNG_CONSUMERD], [test x$enable_bin_lttng_consumerd != xno])
704AM_CONDITIONAL([BUILD_BIN_LTTNG_CRASH], [test x$enable_bin_lttng_crash != xno])
705AM_CONDITIONAL([BUILD_BIN_LTTNG_RELAYD], [test x$enable_bin_lttng_relayd != xno])
706AM_CONDITIONAL([BUILD_BIN_LTTNG_SESSIOND], [test x$enable_bin_lttng_sessiond != xno])
707
708# Export the tests and extras build conditions.
709AS_IF([\
710test "x$enable_bin_lttng" != "xno" && \
711test "x$enable_bin_lttng_consumerd" != "xno" && \
712test "x$enable_bin_lttng_crash" != "xno" && \
713test "x$enable_bin_lttng_relayd" != "xno" && \
714test "x$enable_bin_lttng_sessiond" != "xno"],
715[build_tests=yes],
716[build_tests=no]
717)
718
719AM_CONDITIONAL([BUILD_TESTS], [test x$build_tests = xyes])
720AM_CONDITIONAL([BUILD_EXTRAS], [test x$enable_extras != xno])
721
722# Export libraries build conditions.
723AM_CONDITIONAL([BUILD_LIB_COMPAT], [test x$build_lib_compat = xyes])
724AM_CONDITIONAL([BUILD_LIB_CONFIG], [test x$build_lib_config = xyes])
725AM_CONDITIONAL([BUILD_LIB_CONSUMER], [test x$build_lib_consumer = xyes])
726AM_CONDITIONAL([BUILD_LIB_HASHTABLE], [test x$build_lib_hashtable = xyes])
727AM_CONDITIONAL([BUILD_LIB_HEALTH], [test x$build_lib_health = xyes])
728AM_CONDITIONAL([BUILD_LIB_INDEX], [test x$build_lib_index = xyes])
729AM_CONDITIONAL([BUILD_LIB_KERNEL_CONSUMER], [test x$build_lib_kernel_consumer = xyes])
730AM_CONDITIONAL([BUILD_LIB_KERNEL_CTL], [test x$build_lib_kernel_ctl = xyes])
731AM_CONDITIONAL([BUILD_LIB_LTTNG_CTL], [test x$build_lib_lttng_ctl = xyes])
732AM_CONDITIONAL([BUILD_LIB_RELAYD], [test x$build_lib_relayd = xyes])
733AM_CONDITIONAL([BUILD_LIB_SESSIOND_COMM], [test x$build_lib_sessiond_comm = xyes])
734AM_CONDITIONAL([BUILD_LIB_TESTPOINT], [test x$build_lib_testpoint = xyes])
735AM_CONDITIONAL([BUILD_LIB_UST_CONSUMER], [test x$build_lib_ust_consumer = xyes])
953192ba 736
b67cd6f0
PP
737# check for pgrep
738AC_PATH_PROG([PGREP], [pgrep], [no])
739AM_CONDITIONAL([HAS_PGREP], [test "x$PGREP" != "xno"])
740
6ed49714 741if test ! -f "$srcdir/src/lib/lttng-ctl/filter/filter-parser.h"; then
193c46de 742 if test x"$(basename "$YACC")" != "xbison -y"; then
6ed49714
YB
743 AC_MSG_ERROR([[bison not found and is required when building from git.
744 Please install bison]])
745 fi
926c87ac
JR
746 AC_PATH_PROG([BISON],[bison])
747 AX_PROG_BISON_VERSION([2.4], [],[
748 AC_MSG_ERROR([[Bison >= 2.4 is required when building from git]])
749 ])
6ed49714
YB
750fi
751
752if test ! -f "$srcdir/src/lib/lttng-ctl/filter/filter-lexer.c"; then
753 if test x"$LEX" != "xflex"; then
754 AC_MSG_ERROR([[flex not found and is required when building from git.
755 Please install flex]])
756 fi
ea70e634
JR
757 AC_PATH_PROG([FLEX],[flex])
758 AX_PROG_FLEX_VERSION([2.5.35], [],[
759 AC_MSG_ERROR([[Flex >= 2.5.35 is required when building from git]])
760 ])
6ed49714 761fi
fac6795d 762
6e2d116c
DG
763CFLAGS="-Wall $CFLAGS -g -fno-strict-aliasing"
764
c72b7d96 765DEFAULT_INCLUDES="-I\$(top_srcdir) -I\$(top_builddir) -I\$(top_builddir)/src -I\$(top_builddir)/include -include config.h"
6e2d116c
DG
766
767lttngincludedir="${includedir}/lttng"
768
769AC_SUBST(lttngincludedir)
770AC_SUBST(DEFAULT_INCLUDES)
771
386418ba
MD
772lttnglibexecdir="${libdir}/lttng/libexec"
773AC_SUBST(lttnglibexecdir)
774
fac6795d
DG
775AC_CONFIG_FILES([
776 Makefile
10a8a223 777 doc/Makefile
6991b181 778 doc/man/Makefile
fac6795d 779 include/Makefile
36907cb5
DS
780 extras/Makefile
781 extras/bindings/Makefile
782 extras/bindings/swig/Makefile
783 extras/bindings/swig/python/Makefile
57f0bd0c 784 extras/core-handler/Makefile
10a8a223
DG
785 src/Makefile
786 src/common/Makefile
787 src/common/kernel-ctl/Makefile
788 src/common/kernel-consumer/Makefile
c8fea79c 789 src/common/consumer/Makefile
10a8a223
DG
790 src/common/ust-consumer/Makefile
791 src/common/hashtable/Makefile
792 src/common/sessiond-comm/Makefile
d31efcff 793 src/common/compat/Makefile
00e2e675 794 src/common/relayd/Makefile
6242251b 795 src/common/testpoint/Makefile
309167d2 796 src/common/index/Makefile
55d09795 797 src/common/health/Makefile
bac6245e 798 src/common/config/Makefile
10a8a223
DG
799 src/lib/Makefile
800 src/lib/lttng-ctl/Makefile
d00c599e 801 src/lib/lttng-ctl/filter/Makefile
2c452d45 802 src/lib/lttng-ctl/lttng-ctl.pc
10a8a223
DG
803 src/bin/Makefile
804 src/bin/lttng-consumerd/Makefile
805 src/bin/lttng-sessiond/Makefile
b8aa1682 806 src/bin/lttng-relayd/Makefile
10a8a223 807 src/bin/lttng/Makefile
d7ba1388 808 src/bin/lttng-crash/Makefile
fac6795d 809 tests/Makefile
9ac429ef
CB
810 tests/regression/Makefile
811 tests/regression/kernel/Makefile
812 tests/regression/tools/Makefile
813 tests/regression/tools/streaming/Makefile
814 tests/regression/tools/filtering/Makefile
815 tests/regression/tools/health/Makefile
d946d662 816 tests/regression/tools/tracefile-limits/Makefile
07b86b52 817 tests/regression/tools/snapshots/Makefile
1b368955 818 tests/regression/tools/live/Makefile
345121ec 819 tests/regression/tools/exclusion/Makefile
e02b109b 820 tests/regression/tools/save-load/Makefile
68270f0f 821 tests/regression/tools/mi/Makefile
075ffe1f 822 tests/regression/tools/wildcard/Makefile
4c80129b 823 tests/regression/tools/crash/Makefile
9ac429ef
CB
824 tests/regression/ust/Makefile
825 tests/regression/ust/nprocesses/Makefile
826 tests/regression/ust/high-throughput/Makefile
827 tests/regression/ust/low-throughput/Makefile
828 tests/regression/ust/before-after/Makefile
f5481aa9 829 tests/regression/ust/buffers-pid/Makefile
a788a3ed 830 tests/regression/ust/periodical-metadata-flush/Makefile
9ac429ef
CB
831 tests/regression/ust/multi-session/Makefile
832 tests/regression/ust/overlap/Makefile
833 tests/regression/ust/overlap/demo/Makefile
91c75285 834 tests/regression/ust/linking/Makefile
43c28d50 835 tests/regression/ust/daemon/Makefile
ee28adfb 836 tests/regression/ust/exit-fast/Makefile
37bd6c8e 837 tests/regression/ust/fork/Makefile
5836cdc2 838 tests/regression/ust/libc-wrapper/Makefile
d4f53cc3 839 tests/regression/ust/baddr-statedump/Makefile
c70c42cc 840 tests/regression/ust/ust-dl/Makefile
37175ce4 841 tests/regression/ust/java-jul/Makefile
504d4ace 842 tests/regression/ust/java-log4j/Makefile
0e115563 843 tests/regression/ust/python-logging/Makefile
568d7e2d 844 tests/regression/ust/getcpu-override/Makefile
199800b2 845 tests/regression/ust/clock-override/Makefile
10b56aef 846 tests/regression/ust/type-declarations/Makefile
605ac758 847 tests/stress/Makefile
81d029da 848 tests/unit/Makefile
1501a7f3 849 tests/unit/ini_config/Makefile
86a96e6c
CB
850 tests/utils/Makefile
851 tests/utils/tap/Makefile
7e0cc23b
CB
852 tests/utils/testapp/Makefile
853 tests/utils/testapp/gen-ust-events/Makefile
ffb08a8c 854 tests/utils/testapp/gen-ust-nevents/Makefile
b02dcdb8 855 tests/utils/testapp/gen-ust-tracef/Makefile
fac6795d
DG
856])
857
87fb9fc0 858# Inject variable into python test script.
9586c198
JR
859AC_CONFIG_FILES([tests/regression/ust/python-logging/test_python_logging],[chmod +x tests/regression/ust/python-logging/test_python_logging])
860
fac6795d 861AC_OUTPUT
6299f964 862
994dd8a4 863#
87fb9fc0 864# Mini-report on what will be built.
994dd8a4
AM
865#
866AS_ECHO()
867
0e4cbe7e
DG
868AS_ECHO("Version name: $version_name")
869AS_ECHO("$version_description")
870
871AS_ECHO()
872
87fb9fc0 873# Target architecture we're building for.
2d90c6c8 874target_arch=$host_cpu
994dd8a4
AM
875[
876for f in $CFLAGS; do
877 if test $f = "-m32"; then
878 target_arch="32-bit"
879 elif test $f = "-m64"; then
880 target_arch="64-bit"
881 fi
882done
883]
884AS_ECHO_N("Target architecture: ")
885AS_ECHO($target_arch)
886
234170ac
UTL
887# kmod enabled/disabled
888AS_ECHO_N("libkmod support: ")
889AS_IF([test "x$kmod_found" = "xyes"],[
890 AS_ECHO("Enabled")
891],[
892 AS_ECHO("Disabled")
893])
894
994dd8a4 895# LTTng-UST enabled/disabled
6299f964 896AS_ECHO_N("Lttng-UST support: ")
994dd8a4
AM
897AS_IF([test "x$lttng_ust_support" = "xyes"],[
898 AS_ECHO("Enabled")
899],[
900 AS_ECHO("Disabled")
901])
55bed213 902
87fb9fc0
JR
903AS_ECHO()
904AS_ECHO("Binaries:")
905
906# List binaries to be built
907AS_ECHO_N("lttng: ")
908AS_IF([test x$enable_bin_lttng != xno],[
909 AS_ECHO("Enabled")
910],[
911 AS_ECHO("Disabled")
912])
913
914AS_ECHO_N("lttng-consumerd: ")
915AS_IF([test x$enable_bin_lttng_consumerd != xno],[
916 AS_ECHO("Enabled")
917],[
918 AS_ECHO("Disabled")
919])
920
921AS_ECHO_N("lttng-crash: ")
922AS_IF([test x$enable_bin_lttng_crash != xno],[
923 AS_ECHO("Enabled")
924],[
925 AS_ECHO("Disabled")
926])
927
928AS_ECHO_N("lttng-relayd: ")
929AS_IF([test x$enable_bin_lttng_relayd != xno],[
930 AS_ECHO("Enabled")
931],[
932 AS_ECHO("Disabled")
933])
934
935AS_ECHO_N("lttng-sessiond: ")
936AS_IF([test x$enable_bin_lttng_sessiond != xno],[
937 AS_ECHO("Enabled")
938],[
939 AS_ECHO("Disabled")
940])
941
942AS_ECHO_N("Extras: ")
943AS_IF([test x$enable_extras != xno],[
944 AS_ECHO("Enabled")
945],[
946 AS_ECHO("Disabled")
947])
948
949# Print the bindir and libdir this `make install' will install into.
950AS_ECHO()
951AS_ECHO_N("Binaries will be installed in: ")
952AS_ECHO("`eval eval echo $bindir`")
953AS_ECHO_N("Libraries will be installed in: ")
954AS_ECHO("`eval eval echo $libdir`")
955
956
957AS_ECHO()
958
959# Print clear message that tests won't be built
960AS_IF([test "x$build_tests" = "xno"],[
961 AS_ECHO("WARNING: Tests won't be built since some binaries were disabled")
962])
963
964AS_ECHO("Tests:")
965
839a9569
MJ
966# LTTng UST Java agent JUL tests enabled/disabled
967AS_ECHO_N("LTTng-UST Java agent JUL tests: ")
968AS_IF([test "x$test_java_agent_jul" = "xyes"],[
969 AS_ECHO("Enabled")
970],[
971 AS_ECHO("Disabled")
972])
973
974# LTTng UST Java agent Log4j tests enabled/disabled
975AS_ECHO_N("LTTng-UST Java agent Log4j tests: ")
976AS_IF([test "x$test_java_agent_log4j" = "xyes"],[
977 AS_ECHO("Enabled")
978],[
979 AS_ECHO("Disabled")
980])
981
9586c198
JR
982AS_ECHO_N("LTTng-UST Python2 agent tests: ")
983AS_IF([test ! -z "$PYTHON2_AGENT"],[
984 AS_ECHO("Enabled")
985],[
986 AS_ECHO("Disabled")
987])
988
989AS_ECHO_N("LTTng-UST Python3 agent tests: ")
990AS_IF([test ! -z "$PYTHON3_AGENT"],[
991 AS_ECHO("Enabled")
992],[
993 AS_ECHO("Disabled")
994])
995
36907cb5
DS
996#Python binding enabled/disabled
997AS_ECHO_N("Python binding: ")
9c444542 998AS_IF([test "x${enable_python_binding:-yes}" = xyes], [
36907cb5
DS
999 AS_ECHO("Enabled")
1000],[
1001 AS_ECHO("Disabled")
1002])
1003
994dd8a4 1004# If we build the sessiond, print the paths it will use
4601fcce
JR
1005AS_ECHO()
1006AS_ECHO_N("The lttng command will search for the lttng-sessiond executable at: ")
1007AS_IF([test "$SESSIOND_BIN" = ""],[
1008 AS_ECHO_N("`eval eval echo $bindir`")
1009 AS_ECHO("/lttng-sessiond")
1010],[
1011 AS_ECHO("$SESSIOND_BIN")
1012])
b8ec3da8 1013
4601fcce
JR
1014AS_ECHO()
1015AS_ECHO("The sessiond daemon will search the following directories: ")
1016AS_ECHO_N("32-bit consumerd executable: ")
1017AS_IF([test "$CONSUMERD32_BIN" = ""],[
1018 AS_ECHO_N("`eval eval echo $lttnglibexecdir`")
1019 AS_ECHO("/lttng-consumerd")
1020],[
1021 AS_ECHO("$CONSUMERD32_BIN")
1022])
994dd8a4 1023
4601fcce
JR
1024AS_ECHO_N("32-bit consumer libraries: ")
1025AS_IF([test "$CONSUMERD32_LIBDIR" = ""],[
1026 AS_ECHO("`eval eval echo $libdir`")
1027],[
1028 AS_ECHO("$CONSUMERD32_LIBDIR")
1029])
994dd8a4 1030
4601fcce
JR
1031AS_ECHO_N("64-bit consumerd executable: ")
1032AS_IF([test "$CONSUMERD64_BIN" = ""],[
1033 AS_ECHO_N("`eval eval echo $lttnglibexecdir`")
1034 AS_ECHO("/lttng-consumerd")
1035],[
1036 AS_ECHO("$CONSUMERD64_BIN")
1037])
994dd8a4 1038
4601fcce
JR
1039AS_ECHO_N("64-bit consumer libraries: ")
1040AS_IF([test "$CONSUMERD64_LIBDIR" = ""],[
1041 AS_ECHO("`eval eval echo $libdir`")
1042],[
1043 AS_ECHO("$CONSUMERD64_LIBDIR")
994dd8a4 1044])
6299f964 1045
994dd8a4 1046AS_ECHO()
6299f964 1047
This page took 0.083702 seconds and 4 git commands to generate.