Properly capture java variables at configure
[lttng-ust.git] / configure.ac
... / ...
CommitLineData
1dnl SPDX-License-Identifier: LGPL-2.1-only
2dnl
3dnl Copyright (C) 2021 EfficiOS, Inc.
4dnl
5dnl Process this file with autoconf to produce a configure script.
6
7
8# Project version information
9m4_define([ust_version_major], [2])
10m4_define([ust_version_minor], [14])
11m4_define([ust_version_patch], [0])
12m4_define([ust_version_dev_stage], [-pre])
13m4_define([ust_version], ust_version_major[.]ust_version_minor[.]ust_version_patch[]ust_version_dev_stage)
14m4_define([ust_version_name], [[O-Beer]])
15m4_define([ust_version_description], [[An alcoholic drink made from yeast-fermented malt flavored with hops.]])
16
17# Library version information of "liblttng-ust"
18# Following the numbering scheme proposed by libtool for the library version
19# http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
20m4_define([ust_lib_version_current], [1])
21m4_define([ust_lib_version_revision], [0])
22m4_define([ust_lib_version_age], [0])
23m4_define([ust_lib_version], ust_lib_version_current[:]ust_lib_version_revision[:]ust_lib_version_age)
24
25# Library version information of "liblttng-ust-ctl"
26# Following the numbering scheme proposed by libtool for the library version
27# http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
28m4_define([ust_ctl_lib_version_current], [5])
29m4_define([ust_ctl_lib_version_revision], [0])
30m4_define([ust_ctl_lib_version_age], [0])
31m4_define([ust_ctl_lib_version], ust_ctl_lib_version_current[:]ust_ctl_lib_version_revision[:]ust_ctl_lib_version_age)
32
33
34## ##
35## Autoconf base setup ##
36## ##
37
38AC_PREREQ([2.69])
39AC_INIT([lttng-ust],[ust_version],[mathieu dot desnoyers at efficios dot com],[],[https://lttng.org])
40
41AC_CONFIG_HEADERS([src/common/config.h include/lttng/ust-config.h include/lttng/ust-version.h])
42AC_CONFIG_AUX_DIR([config])
43AC_CONFIG_MACRO_DIR([m4])
44
45AC_CANONICAL_TARGET
46AC_CANONICAL_HOST
47
48
49## ##
50## Automake base setup ##
51## ##
52
53AM_INIT_AUTOMAKE([1.12 foreign dist-bzip2 no-dist-gzip tar-ustar nostdinc -Wall -Wno-portability -Werror])
54AM_MAINTAINER_MODE([enable])
55
56# Enable silent rules by default
57AM_SILENT_RULES([yes])
58
59
60## ##
61## OS and Arch specific defaults ##
62## ##
63
64# Set os specific options
65AS_CASE([$host_os],
66 [freebsd*], [AE_FEATURE_DISABLE([numa])]
67)
68
69# Set architecture specific options
70AS_CASE([$host_cpu],
71 [i[[3456]]86], [],
72 [x86_64], [],
73 [amd64], [],
74 [powerpc], [],
75 [ppc64], [],
76 [ppc64le], [],
77 [powerpc64], [],
78 [powerpc64le], [],
79 [s390], [],
80 [s390x], [],
81 [arm*], [AE_FEATURE_DISABLE([numa])],
82 [aarch64*], [],
83 [mips*], [],
84 [tile*], [],
85 [
86 unsupported_arch="yes"
87 ])
88
89
90## ##
91## C compiler checks ##
92## ##
93
94# Choose the C compiler
95AC_PROG_CC
96# AC_PROG_CC_STDC was merged in AC_PROG_CC in autoconf 2.70
97m4_version_prereq([2.70], [], [AC_PROG_CC_STDC])
98
99# Make sure the C compiler supports C99
100AS_IF([test "$ac_cv_prog_cc_c99" = "no"], [AC_MSG_ERROR([The compiler does not support C99])])
101
102# Enable available system extensions and LFS support
103AC_USE_SYSTEM_EXTENSIONS
104AC_SYS_LARGEFILE
105
106# Make sure the C compiler supports __attribute__
107AX_C___ATTRIBUTE__
108AS_IF([test "x$ax_cv___attribute__" != "xyes"],
109 [AC_MSG_ERROR([The compiler does not support __attribute__ extensions])])
110
111# Make sure we have pthread support
112AX_PTHREAD([], [AC_MSG_ERROR([Could not configure pthread support])])
113
114# Make sure the C compiler supports weak symbols
115AX_SYS_WEAK_ALIAS
116AS_IF([test "x$ax_cv_sys_weak_alias" = "xno"],
117 [AC_MSG_ERROR([Your platform doesn't support weak symbols.])])
118
119# Checks for typedefs, structures, and compiler characteristics.
120AC_C_INLINE
121AC_C_TYPEOF
122AC_TYPE_INT16_T
123AC_TYPE_INT32_T
124AC_TYPE_INT64_T
125AC_TYPE_INT8_T
126AC_TYPE_MODE_T
127AC_TYPE_OFF_T
128AC_TYPE_PID_T
129AC_TYPE_SIZE_T
130AC_TYPE_SSIZE_T
131AC_TYPE_UID_T
132AC_TYPE_UINT16_T
133AC_TYPE_UINT32_T
134AC_TYPE_UINT64_T
135AC_TYPE_UINT8_T
136AC_CHECK_TYPES([ptrdiff_t])
137
138# Detect warning flags supported by the C compiler and append them to
139# WARN_CFLAGS.
140m4_define([WARN_FLAGS_LIST], [ dnl
141 -Wall dnl
142 -Wextra dnl
143 -Wmissing-prototypes dnl
144 -Wmissing-declarations dnl
145 -Wnull-dereference dnl
146 -Wundef dnl
147 -Wshadow dnl
148 -Wjump-misses-init dnl
149 -Wsuggest-attribute=format dnl
150 -Wtautological-constant-out-of-range-compare dnl
151 -Wnested-externs dnl
152 -Wwrite-strings dnl
153 -Wformat=2 dnl
154 -Wstrict-aliasing dnl
155 -Wmissing-noreturn dnl
156 -Winit-self dnl
157 -Wduplicated-cond dnl
158 -Wduplicated-branches dnl
159 -Wlogical-op dnl
160 dnl These would require reworking the tracepoint macros
161 dnl-Wredundant-decls dnl
162 -Wno-sign-compare dnl
163 -Wno-missing-field-initializers dnl
164 -Wno-null-dereference dnl
165])
166
167# Pass -Werror as an extra flag during the test: this is needed to make the
168# -Wunknown-warning-option diagnostic fatal with clang.
169AC_LANG_PUSH([C])
170AX_APPEND_COMPILE_FLAGS([WARN_FLAGS_LIST], [WARN_CFLAGS], [-Werror])
171AC_LANG_POP([C])
172
173# The test used in AX_APPEND_COMPILE_FLAGS, generated using AC_LANG_PROGRAM, is
174# written in such a way that it triggers warnings with the following warning
175# flags. So they would always end up disabled if we put them there, because
176# the test program would not build.
177#
178# Enable them here unconditionally. They are supported by GCC >= 4.8 and by
179# Clang >= 3.3 (required by the project) and are only valid for C code.
180WARN_CFLAGS="${WARN_CFLAGS} -Wold-style-definition -Wstrict-prototypes"
181
182# Disable 'strict aliasing' if the compiler supports it.
183AC_LANG_PUSH([C])
184AX_APPEND_COMPILE_FLAGS([-fno-strict-aliasing], [OPT_CFLAGS], [-Werror])
185AC_LANG_POP([C])
186
187
188## ##
189## C++ compiler checks ##
190## ##
191
192# Find an optional C++11 compiler without GNU extensions (-std=c++11)
193AX_CXX_COMPILE_STDCXX([11], [noext], [optional])
194
195AS_IF([test "$HAVE_CXX11" = "1"], [
196 # Pass -Werror as an extra flag during the test: this is needed to make the
197 # -Wunknown-warning-option diagnostic fatal with clang.
198 AC_LANG_PUSH([C++])
199 AX_APPEND_COMPILE_FLAGS([WARN_FLAGS_LIST -Wno-undef -Wno-duplicated-branches], [WARN_CXXFLAGS], [-Werror])
200 AC_LANG_POP([C++])
201])
202
203
204## ##
205## Header checks ##
206## ##
207
208AC_HEADER_STDBOOL
209AC_CHECK_HEADERS([ \
210 arpa/inet.h \
211 dlfcn.h \
212 fcntl.h \
213 float.h \
214 limits.h \
215 linux/perf_event.h \
216 locale.h \
217 stddef.h \
218 sys/socket.h \
219 sys/time.h \
220 wchar.h \
221])
222
223# Check for dlinfo() by testing for RTLD_DI_LINKMAP in dlfcn.h
224AS_IF([test "x$ac_cv_header_dlfcn_h" = "xyes"], [
225 AC_CHECK_DECL([RTLD_DI_LINKMAP], [], [], [[#include <dlfcn.h>]])
226])
227
228
229## ##
230## Programs checks ##
231## ##
232
233AM_PROG_AR
234AC_PROG_SED
235AC_PROG_GREP
236AC_PROG_LN_S
237AC_PROG_MKDIR_P
238AC_PROG_MAKE_SET
239AC_CHECK_PROGS([ASCIIDOC], [asciidoc])
240AC_CHECK_PROGS([CMAKE], [cmake])
241AC_CHECK_PROGS([FOLD], [fold])
242AC_CHECK_PROGS([XMLTO], [xmlto])
243
244AM_PATH_PYTHON([2.7], [], [PYTHON=""])
245
246# Initialize and configure libtool
247LT_INIT([disable-static])
248
249
250## ##
251## Library checks ##
252## ##
253
254AC_FUNC_CHOWN
255AC_FUNC_FORK
256AC_FUNC_MMAP
257AC_FUNC_STRERROR_R
258AC_FUNC_STRNLEN
259AC_CHECK_FUNCS([ \
260 atexit \
261 clock_gettime \
262 ftruncate \
263 getpagesize \
264 gettid \
265 gettimeofday \
266 localeconv \
267 memchr \
268 memmove \
269 memset \
270 mkdir \
271 munmap \
272 realpath \
273 sched_getcpu \
274 socket \
275 strchr \
276 strdup \
277 strerror \
278 strtol \
279 strtoul \
280 sysconf \
281])
282
283# AC_FUNC_MALLOC causes problems when cross-compiling.
284#AC_FUNC_MALLOC
285#AC_FUNC_REALLOC
286
287# Check for pthread_setname_np and its signature
288LTTNG_PTHREAD_SETNAME_NP
289LTTNG_PTHREAD_GETNAME_NP
290
291# Check dor dlopen() in -ldl or -lc
292AC_CHECK_LIB([dl], [dlopen], [
293 libdl_name=dl
294 DL_LIBS="-ldl"
295], [
296 # dlopen not found in libdl, check in libc
297 AC_CHECK_LIB([c], [dlopen], [
298 libdl_name=c
299 DL_LIBS="-lc"
300 ], [
301 AC_MSG_ERROR([Cannot find dlopen in libdl nor libc. Use [LDFLAGS]=-Ldir to specify their location.])
302 ])
303])
304AC_SUBST(DL_LIBS)
305
306# Check if libdl has dlmopen()
307AC_CHECK_LIB([$libdl_name], [dlmopen], [
308 AC_DEFINE([HAVE_DLMOPEN], [1], [Define to 1 if dlmopen is available.])
309])
310
311# Require URCU >= 0.12 for DEFINE_URCU_TLS_INIT
312PKG_CHECK_MODULES([URCU], [liburcu >= 0.12])
313
314
315## ##
316## User variables ##
317## ##
318
319# Additional variables captured during ./configure
320
321AC_ARG_VAR([CLASSPATH], [Java class path])
322AC_ARG_VAR([JAVACFLAGS], [Java compiler flags])
323AC_ARG_VAR([JAVAC], [Java compiler])
324AC_ARG_VAR([JAVAFLAGS], [Java VM flags])
325AC_ARG_VAR([JAVA], [Java VM])
326AC_ARG_VAR([JAVAPREFIX], [prefix where Java runtime is installed])
327
328
329## ##
330## Optional features selection ##
331## ##
332
333# numa integration
334# Enabled by default, except on some platforms
335AE_FEATURE_DEFAULT_ENABLE
336AE_FEATURE([numa],[disable NUMA support])
337
338# Java JNI interface library
339# Disabled by default
340AE_FEATURE_DEFAULT_DISABLE
341AE_FEATURE([jni-interface], [build JNI interface between C and Java])
342
343# Build the Java Logging API agent
344# Disabled by default
345AE_FEATURE_DEFAULT_DISABLE
346AE_FEATURE([java-agent-jul],[build the LTTng UST Java agent with JUL support])
347
348# Build the Java Log4j agent
349# Disabled by default
350AE_FEATURE_DEFAULT_DISABLE
351AE_FEATURE([java-agent-log4j],[build the LTTng UST Java agent with Log4j support])
352
353# Build both Java agents
354# Disabled by default
355AE_FEATURE_DEFAULT_DISABLE
356AE_FEATURE([java-agent-all],[build the LTTng UST Java agent with all supported backends])
357
358# Build the Python agent
359# Disabled by default
360AE_FEATURE_DEFAULT_DISABLE
361AE_FEATURE([python-agent],[build the LTTng UST Python agent])
362
363# Build the examples
364# Disabled by default
365AE_FEATURE_DEFAULT_ENABLE
366AE_FEATURE([examples],[Do not build and install examples])
367
368# Man pages
369# Enabled by default
370AE_FEATURE_DEFAULT_ENABLE
371AE_FEATURE([man-pages],[Do not build and install man pages (already built in a distributed tarball)])
372
373# Systemtap sdt.h integration
374# Disabled by default
375AC_ARG_WITH([sdt],
376 [AS_HELP_STRING([--with-sdt], [provide SystemTap integration via sdt.h [default=no]])]
377)
378
379# Override the default runtime directory
380AC_ARG_WITH([lttng-system-rundir], [
381AS_HELP_STRING([--with-lttng-system-rundir], [Location of the system directory where LTTng-UST expects the system-wide lttng-sessiond runtime files. The default is "/var/run/lttng".]),
382], [
383 lttng_system_rundir="$withval"
384], [
385 lttng_system_rundir="/var/run/lttng"
386])
387
388
389## ##
390## Check for conflicting features selection ##
391## ##
392
393AE_IF_FEATURE_DISABLED([shared], [
394 AC_MSG_ERROR(LTTng-UST requires shared libraries to be enabled)
395])
396
397AE_IF_FEATURE_ENABLED([java-agent-all], [
398 AE_FEATURE_ENABLE([java-agent-jul])
399 AE_FEATURE_ENABLE([java-agent-log4j])
400])
401
402
403## ##
404## Check for optional features dependencies ##
405## ##
406
407# The numa integration requires libnuma
408AE_IF_FEATURE_ENABLED([numa], [
409 AC_CHECK_LIB([numa], [numa_available], [
410 AC_DEFINE([HAVE_LIBNUMA], [1], [Define to 1 if libnuma is available.])
411 ], [
412 AC_MSG_ERROR([dnl
413libnuma is not available. Please either install it (e.g. libnuma-dev) or use
414[LDFLAGS]=-Ldir to specify the right location, or use --disable-numa configure
415argument to disable NUMA support.
416 ])
417 ])
418])
419
420# The JNI interface and Java Agents require a working Java JDK
421AS_IF([AE_IS_FEATURE_ENABLED([jni-interface]) || AE_IS_FEATURE_ENABLED([java-agent-jul]) || AE_IS_FEATURE_ENABLED([java-agent-log4j])], [
422 AX_PROG_JAVAC
423 AX_PROG_JAVA
424 AX_PROG_JAR
425
426 # Get the CPPFLAGS required to build jni libraries
427 AX_JNI_INCLUDE_DIR
428 for jni_include_dir in $JNI_INCLUDE_DIRS; do
429 JNI_CPPFLAGS="$JNI_CPPFLAGS -I$jni_include_dir"
430 done
431
432 # Check for javah and jni.h
433 saved_CPPFLAGS="$CPPFLAGS"
434 CPPFLAGS="$CPPFLAGS $JNI_CPPFLAGS"
435 AX_PROG_JAVAH
436 CPPFLAGS="$saved_CPPFLAGS"
437])
438
439# The log4j agent requires the log4j jar in the classpath
440AE_IF_FEATURE_ENABLED([java-agent-log4j], [
441 AX_CHECK_CLASS([org.apache.log4j.Logger])
442 AS_IF([test "x$ac_cv_class_org_apache_log4j_Logger" = "xno"], [
443 AC_MSG_ERROR([dnl
444The UST Java agent support for log4j was requested but the Log4j classes were
445not found. Please specify the location of the Log4j jar via the Java CLASSPATH
446environment variable, e.g. ./configure CLASSPATH="/path/to/log4j.jar"
447
448Current CLASSPATH: "$CLASSPATH"
449 ])
450 ])
451])
452
453# The python agent requires a python interpreter
454AE_IF_FEATURE_ENABLED([python-agent], [
455 AS_IF([test "x$PYTHON" = "x"], [
456 AC_MSG_ERROR([dnl
457Cannot find a suitable python interpreter. You can override it with the PYTHON
458environment variable.
459 ])
460 ])
461])
462
463# Check for asciidoc and xmlto if we enabled building the man pages.
464AE_IF_FEATURE_ENABLED([man-pages], [
465 AS_IF([test "x$ASCIIDOC" = "x" || test "x$XMLTO" = "x"], [
466 AE_IF_IN_GIT_REPO([
467 # This is an error because we're in the Git repo, which
468 # means the man pages are not already generated for us,
469 # thus asciidoc/xmlto are required because we were asked
470 # to build the man pages.
471 AC_MSG_ERROR([dnl
472Both asciidoc and xmlto are needed to build the LTTng-UST man pages. Use
473--disable-man-pages to disable building the man pages, in which case
474they will not be installed.
475 ])
476 ], [
477 # Only warn here: since we're in the tarball, the man
478 # pages should already be generated at this point, thus
479 # asciidoc/xmlto are not strictly required.
480 warn_prebuilt_man_pages=yes
481 ])
482 ], [
483 have_asciidoc_xmlto=yes
484 ])
485])
486
487AS_IF([test "x$with_sdt" = "xyes"], [
488 AC_MSG_CHECKING([STAP_PROBEV()])
489 AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
490 #define SDT_USE_VARIADIC
491 #include <sys/sdt.h>
492 void fct(void)
493 {
494 STAP_PROBEV(provider,name,1,2,3,4,5,6,7,8,9,10);
495 }
496 ]])], [
497 AC_MSG_RESULT([yes])
498 AC_DEFINE([LTTNG_UST_HAVE_SDT_INTEGRATION], [1], [SystemTap integration via sdt.h])
499 ], [
500 AC_MSG_RESULT([no])
501 AC_MSG_ERROR([dnl
502The sdt.h integration was requested but the STAP_PROBEV define cannot be used.
503Make sure it is installed, and up to date, or use CPPFLAGS=-I/path/ to specify
504a non-standard path to sys/sdt.h
505 ])
506 ])
507])
508
509
510## ##
511## Set defines for optional features conditionnals in the source code ##
512## ##
513
514AC_DEFINE_UNQUOTED([LTTNG_SYSTEM_RUNDIR], ["$lttng_system_rundir"], [LTTng system runtime directory])
515
516# Defined in include/lttng/ust-version.h
517AC_DEFINE([LTTNG_UST_MAJOR_VERSION], ust_version_major, [LTTng UST major version])
518AC_DEFINE([LTTNG_UST_MINOR_VERSION], ust_version_minor, [LTTng UST minor version])
519AC_DEFINE([LTTNG_UST_PATCHLEVEL_VERSION], ust_version_patch, [LTTng UST patch version])
520AC_DEFINE([LTTNG_UST_VERSION], ["]ust_version["], [LTTng UST version string])
521AC_DEFINE([LTTNG_UST_LIB_SONAME_MAJOR], [ust_lib_version_current], [Major SONAME number of liblttng-ust])
522AC_DEFINE([LTTNG_UST_CTL_LIB_SONAME_MAJOR], [ust_ctl_lib_version_current], [Major SONAME number of liblttng-ust-ctl])
523
524
525## ##
526## Set automake variables for optional feature conditionnals in Makefile.am ##
527## ##
528
529AM_CONDITIONAL([ENABLE_EXAMPLES], AE_IS_FEATURE_ENABLED([examples]))
530AM_CONDITIONAL([ENABLE_GEN_TP_EXAMPLES], [test "x$PYTHON" != "x"])
531AM_CONDITIONAL([ENABLE_JAVA_AGENT], AE_IS_FEATURE_ENABLED([java-agent-jul]) || AE_IS_FEATURE_ENABLED([java-agent-log4j]))
532AM_CONDITIONAL([ENABLE_JAVA_AGENT_WITH_JUL], AE_IS_FEATURE_ENABLED([java-agent-jul]))
533AM_CONDITIONAL([ENABLE_JAVA_AGENT_WITH_LOG4J], AE_IS_FEATURE_ENABLED([java-agent-log4j]))
534AM_CONDITIONAL([ENABLE_JNI_INTERFACE], AE_IS_FEATURE_ENABLED([jni-interface]))
535AM_CONDITIONAL([ENABLE_MAN_PAGES], AE_IS_FEATURE_ENABLED([man-pages]))
536AM_CONDITIONAL([ENABLE_NUMA], AE_IS_FEATURE_ENABLED([numa]))
537AM_CONDITIONAL([ENABLE_PYTHON_AGENT], AE_IS_FEATURE_ENABLED([python-agent]))
538AM_CONDITIONAL([ENABLE_UST_DL], [test "x$ac_cv_have_decl_RTLD_DI_LINKMAP" = "xyes"])
539AM_CONDITIONAL([HAVE_ASCIIDOC_XMLTO], [test "x$have_asciidoc_xmlto" = "xyes"])
540AM_CONDITIONAL([HAVE_CMAKE], [test "x$CMAKE" != "x"])
541AM_CONDITIONAL([HAVE_CXX], [test "$HAVE_CXX11" = "1"])
542AM_CONDITIONAL([HAVE_JAVAH], [test "x$JAVAH" != "x"])
543AM_CONDITIONAL([HAVE_PERF_EVENT], [test "x$ac_cv_header_linux_perf_event_h" = "xyes"])
544
545
546## ##
547## Substitute variables for use in Makefile.am ##
548## ##
549
550# Library versions for libtool
551AC_SUBST([LTTNG_UST_LIBRARY_VERSION], ust_lib_version)
552AC_SUBST([LTTNG_UST_CTL_LIBRARY_VERSION], ust_ctl_lib_version)
553
554# Major soname for python-lttngust
555AC_SUBST([LTTNG_UST_LIB_SONAME_MAJOR], [ust_lib_version_current])
556
557AM_CFLAGS="$OPT_CFLAGS $WARN_CFLAGS $URCU_CFLAGS $PTHREAD_CFLAGS"
558AC_SUBST(AM_CFLAGS)
559
560AM_CXXFLAGS="$WARN_CXXFLAGS $URCU_CFLAGS $PTHREAD_CFLAGS"
561AC_SUBST(AM_CXXFLAGS)
562
563# The order in which the include folders are searched is important.
564# The top_builddir should always be searched first in the event that a build
565# time generated file is included.
566AM_CPPFLAGS="-I\$(top_builddir)/include -I\$(top_srcdir)/include -I\$(top_builddir)/src -I\$(top_srcdir)/src -include common/config.h"
567AC_SUBST(AM_CPPFLAGS)
568
569AC_SUBST(JNI_CPPFLAGS)
570
571
572## ##
573## Output files generated by configure ##
574## ##
575
576# List of files to be generated from '.in' templates by AC_OUTPUT
577AC_CONFIG_FILES([
578 Makefile
579 doc/examples/Makefile
580 doc/Makefile
581 doc/man/Makefile
582 extras/Makefile
583 include/Makefile
584 src/common/Makefile
585 src/lib/lttng-ust-common/Makefile
586 src/lib/lttng-ust-ctl/Makefile
587 src/lib/lttng-ust-cyg-profile/Makefile
588 src/lib/lttng-ust-dl/Makefile
589 src/lib/lttng-ust-fd/Makefile
590 src/lib/lttng-ust-fork/Makefile
591 src/lib/lttng-ust-java-agent/java/lttng-ust-agent-all/Makefile
592 src/lib/lttng-ust-java-agent/java/lttng-ust-agent-common/Makefile
593 src/lib/lttng-ust-java-agent/java/lttng-ust-agent-jul/Makefile
594 src/lib/lttng-ust-java-agent/java/lttng-ust-agent-log4j/Makefile
595 src/lib/lttng-ust-java-agent/java/Makefile
596 src/lib/lttng-ust-java-agent/jni/common/Makefile
597 src/lib/lttng-ust-java-agent/jni/jul/Makefile
598 src/lib/lttng-ust-java-agent/jni/log4j/Makefile
599 src/lib/lttng-ust-java-agent/jni/Makefile
600 src/lib/lttng-ust-java-agent/Makefile
601 src/lib/lttng-ust-java/Makefile
602 src/lib/lttng-ust-libc-wrapper/Makefile
603 src/lib/lttng-ust-pthread-wrapper/Makefile
604 src/lib/lttng-ust-tracepoint/Makefile
605 src/lib/lttng-ust/Makefile
606 src/lib/lttng-ust-python-agent/Makefile
607 src/lib/Makefile
608 src/lib/lttng-ust-ctl.pc
609 src/lib/lttng-ust.pc
610 src/Makefile
611 src/python-lttngust/lttngust/version.py
612 src/python-lttngust/Makefile
613 src/python-lttngust/setup.py
614 tests/benchmark/Makefile
615 tests/compile/api0/ctf-types/Makefile
616 tests/compile/api0/hello.cxx/Makefile
617 tests/compile/api0/hello/Makefile
618 tests/compile/api0/hello-many/Makefile
619 tests/compile/api0/Makefile
620 tests/compile/api0/same_line_tracepoint/Makefile
621 tests/compile/api1/ust-fields/Makefile
622 tests/compile/api1/hello.cxx/Makefile
623 tests/compile/api1/hello/Makefile
624 tests/compile/api1/hello-many/Makefile
625 tests/compile/api1/Makefile
626 tests/compile/api1/same_line_tracepoint/Makefile
627 tests/compile/api1/test-app-ctx/Makefile
628 tests/compile/Makefile
629 tests/Makefile
630 tests/regression/abi0-conflict/Makefile
631 tests/regression/Makefile
632 tests/unit/gcc-weak-hidden/Makefile
633 tests/unit/libmsgpack/Makefile
634 tests/unit/libringbuffer/Makefile
635 tests/unit/Makefile
636 tests/unit/pthread_name/Makefile
637 tests/unit/snprintf/Makefile
638 tests/unit/ust-elf/Makefile
639 tests/unit/ust-error/Makefile
640 tests/unit/ust-utils/Makefile
641 tests/utils/Makefile
642 tools/Makefile
643])
644
645AC_OUTPUT
646
647
648## ##
649## Mini-report on what will be built. ##
650## ##
651
652PPRINT_INIT
653PPRINT_SET_INDENT(1)
654PPRINT_SET_TS(38)
655
656AS_ECHO
657AS_IF([test -n "ust_version_name"], [
658 AS_ECHO("${PPRINT_COLOR_BLDBLU}LTTng-ust $PACKAGE_VERSION \"ust_version_name\"$PPRINT_COLOR_RST")
659], [
660 AS_ECHO("${PPRINT_COLOR_BLDBLU}LTTng-ust $PACKAGE_VERSION")
661])
662
663AS_ECHO
664
665AS_IF([test -n "ust_version_description"], [
666 AS_IF([test -n "$FOLD"], [
667 AS_ECHO(["ust_version_description"]) | $FOLD -s
668 ], [
669 AS_ECHO(["ust_version_description"])
670 ])
671 AS_ECHO
672])
673
674PPRINT_SUBTITLE([System])
675
676PPRINT_PROP_STRING([Target architecture], $host_cpu)
677
678AS_IF([test "x$unsupported_arch" = "xyes"],[
679 PPRINT_WARN([Your architecture ($host_cpu) is unsupported, using safe default of no unaligned access.])
680])
681
682AS_ECHO
683PPRINT_SUBTITLE([Features])
684PPRINT_SET_INDENT(1)
685
686test "x$with_sdt" = "xyes" && value=1 || value=0
687PPRINT_PROP_BOOL_CUSTOM([sdt.h integration], $value, [use --with-sdt])
688
689AE_IS_FEATURE_ENABLED([java-agent-jul]) && value=1 || value=0
690PPRINT_PROP_BOOL_CUSTOM([Java agent (JUL support)], $value, [use --enable-java-agent-jul])
691
692AE_IS_FEATURE_ENABLED([java-agent-log4j]) && value=1 || value=0
693PPRINT_PROP_BOOL_CUSTOM([Java agent (Log4j support)], $value, [use --enable-java-agent-log4j])
694
695AE_IS_FEATURE_ENABLED([jni-interface]) && value=1 || value=0
696PPRINT_PROP_BOOL_CUSTOM([JNI interface (JNI)], $value, [use --enable-jni-interface])
697
698AE_IS_FEATURE_ENABLED([python-agent]) && value=1 || value=0
699PPRINT_PROP_BOOL_CUSTOM([Python agent], $value, [use --enable-python-agent])
700
701test "x$ac_cv_header_linux_perf_event_h" = "xyes" && value=1 || value=0
702PPRINT_PROP_BOOL_CUSTOM([Perf event integration], $value)
703
704AE_IS_FEATURE_ENABLED([numa]) && value=1 || value=0
705PPRINT_PROP_BOOL([NUMA], $value)
706
707AS_ECHO
708PPRINT_SET_INDENT(0)
709
710AE_IS_FEATURE_ENABLED([examples]) && value=1 || value=0
711PPRINT_PROP_BOOL([Build and install examples], $value, $PPRINT_COLOR_SUBTITLE)
712
713# man pages build enabled/disabled
714m4_pushdef([build_man_pages_msg], [Build and install man pages])
715
716AE_IF_FEATURE_ENABLED([man-pages], [
717 AE_IF_IN_GIT_REPO([
718 PPRINT_PROP_BOOL([build_man_pages_msg], 1, $PPRINT_COLOR_SUBTITLE)
719 ], [
720 AS_IF([test "x$have_asciidoc_xmlto" = "xyes"], [
721 PPRINT_PROP_BOOL([build_man_pages_msg], 1, $PPRINT_COLOR_SUBTITLE)
722 ], [
723 PPRINT_PROP_STRING([build_man_pages_msg],
724 [${PPRINT_COLOR_BLDGRN}yes (already built)],
725 $PPRINT_COLOR_SUBTITLE)
726 ])
727 ])
728], [
729 PPRINT_PROP_BOOL([build_man_pages_msg], 0, $PPRINT_COLOR_SUBTITLE)
730])
731
732m4_popdef([build_man_pages_msg])
733
734PPRINT_SET_INDENT(1)
735
736report_bindir="`eval eval echo $bindir`"
737report_libdir="`eval eval echo $libdir`"
738
739# Print the bindir and libdir this `make install' will install into.
740AS_ECHO
741PPRINT_SUBTITLE([Install directories])
742PPRINT_PROP_STRING([Binaries], [$report_bindir])
743PPRINT_PROP_STRING([Libraries], [$report_libdir])
744
745AS_ECHO
746PPRINT_SUBTITLE([System directories])
747
748PPRINT_PROP_STRING([lttng-sessiond rundir], [$lttng_system_rundir])
749
750PPRINT_SET_INDENT(0)
751
752AS_IF([test "x$warn_prebuilt_man_pages" = "xyes" ], [
753 AS_ECHO
754 PPRINT_WARN([dnl
755Both asciidoc and xmlto are needed to build the LTTng-UST man pages.
756
757Note that the man pages are already built in this distribution tarball,
758therefore asciidoc and xmlto are only needed if you intend to modify
759their sources.
760
761Use --disable-man-pages to completely disable building and installing
762the man pages.])
763])
764
765# vim: shiftwidth=2 softtabstop=2 expandtab
This page took 0.0285 seconds and 4 git commands to generate.