Introduce AE_FEATURE to manage configure features
[lttng-ust.git] / configure.ac
CommitLineData
f4a9899e
MJ
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], [13])
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], [[Codename TBD]])
15m4_define([ust_version_description], [[Description TBD]])
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)
94480b71 24
f4a9899e 25# Library version information of "liblttng-ust-ctl"
a334646a
MD
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
f4a9899e
MJ
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
23e08412 33
f4a9899e
MJ
34## ##
35## Autoconf base setup ##
36## ##
a334646a 37
f4a9899e
MJ
38AC_PREREQ([2.69])
39AC_INIT([lttng-ust],[ust_version],[mathieu dot desnoyers at efficios dot com],[],[https://lttng.org])
41a2a9aa 40
f4a9899e 41AC_CONFIG_HEADERS([include/config.h include/lttng/ust-config.h include/lttng/ust-version.h])
55355fa5 42AC_CONFIG_AUX_DIR([config])
94480b71 43AC_CONFIG_MACRO_DIR([m4])
94480b71 44
9441df61
PMF
45AC_CANONICAL_TARGET
46AC_CANONICAL_HOST
94480b71 47
f4a9899e
MJ
48
49## ##
50## Automake base setup ##
51## ##
52
0f6f0e89 53AM_INIT_AUTOMAKE([1.12 foreign dist-bzip2 no-dist-gzip tar-ustar nostdinc -Wall -Wno-portability -Werror])
846154aa 54AM_MAINTAINER_MODE([enable])
94480b71 55
80268473
MJ
56# Enable silent rules by default
57AM_SILENT_RULES([yes])
4846fadc 58
2bee6b25 59
dd08adc1
MJ
60## ##
61## OS and Arch specific defaults ##
62## ##
63
64# Set os specific options
65AS_CASE([$host_os],
ed6dd5d6 66 [freebsd*], [AE_FEATURE_DISABLE([numa])]
dd08adc1
MJ
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], [],
ed6dd5d6 81 [arm*], [AE_FEATURE_DISABLE([numa])],
dd08adc1
MJ
82 [aarch64*], [],
83 [mips*], [],
84 [tile*], [],
85 [
86 unsupported_arch="yes"
87 ])
88
89
2bee6b25
MJ
90## ##
91## C compiler checks ##
92## ##
93
94# Choose the C compiler
94480b71 95AC_PROG_CC
f436dc74
JG
96# AC_PROG_CC_STDC was merged in AC_PROG_CC in autoconf 2.70
97m4_version_prereq([2.70], [], [AC_PROG_CC_STDC])
23c8854a 98
2bee6b25
MJ
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
94480b71 115AX_SYS_WEAK_ALIAS
2bee6b25
MJ
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
139## ##
140## C++ compiler checks ##
141## ##
142
143# Find an optional C++11 compiler without GNU extensions (-std=c++11)
144AX_CXX_COMPILE_STDCXX([11], [noext], [optional])
145AM_CONDITIONAL([HAVE_CXX], [test "$HAVE_CXX11" = "1"])
94480b71 146
161239e0 147
eeef0055
MJ
148## ##
149## Header checks ##
150## ##
151
152AC_HEADER_STDBOOL
153AC_CHECK_HEADERS([ \
154 arpa/inet.h \
155 dlfcn.h \
156 fcntl.h \
157 float.h \
158 limits.h \
159 linux/perf_event.h \
160 locale.h \
161 stddef.h \
162 sys/socket.h \
163 sys/time.h \
164 wchar.h \
165])
166
167# Check for dlinfo() by testing for RTLD_DI_LINKMAP in dlfcn.h
168AS_IF([test "x$ac_cv_header_dlfcn_h" = "xyes"], [
169 AC_CHECK_DECL([RTLD_DI_LINKMAP], [], [], [[#include <dlfcn.h>]])
170])
171
172
49f89ab8
MJ
173## ##
174## Programs checks ##
175## ##
176
8aeb3cae 177AM_PROG_AR
46a73fe4 178AC_PROG_SED
faebb418 179AC_PROG_GREP
85e09133 180AC_PROG_LN_S
4c70c05c 181AC_PROG_MKDIR_P
94480b71 182AC_PROG_MAKE_SET
49f89ab8
MJ
183AC_CHECK_PROGS([ASCIIDOC], [asciidoc])
184AC_CHECK_PROGS([CMAKE], [cmake])
185AC_CHECK_PROGS([FOLD], [fold])
186AC_CHECK_PROGS([XMLTO], [xmlto])
46a73fe4 187
49f89ab8 188AM_PATH_PYTHON([2.7], [], [PYTHON=""])
86adb855 189
49f89ab8
MJ
190AX_PROG_JAVAC
191AX_PROG_JAVA
192AX_PROG_JAR
86adb855 193
49f89ab8 194# Initialize and configure libtool
94480b71 195LT_INIT([disable-static])
faebb418 196
49f89ab8 197
a423db3f
MJ
198## ##
199## Library checks ##
200## ##
49f89ab8 201
94480b71
MJ
202AC_FUNC_CHOWN
203AC_FUNC_FORK
204AC_FUNC_MMAP
94480b71
MJ
205AC_FUNC_STRERROR_R
206AC_FUNC_STRNLEN
207AC_CHECK_FUNCS([ \
a423db3f
MJ
208 atexit \
209 clock_gettime \
210 ftruncate \
211 getpagesize \
212 gettimeofday \
213 localeconv \
214 memchr \
215 memmove \
216 memset \
217 mkdir \
218 munmap \
219 realpath \
220 sched_getcpu \
221 socket \
222 strchr \
223 strdup \
224 strerror \
225 strtol \
226 strtoul \
227 sysconf \
86adb855 228])
340f7763 229
a423db3f
MJ
230# AC_FUNC_MALLOC causes problems when cross-compiling.
231#AC_FUNC_MALLOC
232#AC_FUNC_REALLOC
233
d9c56a93
MJ
234# Check for pthread_setname_np and its signature
235LTTNG_PTHREAD_SETNAME_NP
653f7d34 236LTTNG_PTHREAD_GETNAME_NP
d9c56a93 237
a423db3f
MJ
238# Check dor dlopen() in -ldl or -lc
239AC_CHECK_LIB([dl], [dlopen], [
240 libdl_name=dl
241 DL_LIBS="-ldl"
242], [
243 # dlopen not found in libdl, check in libc
244 AC_CHECK_LIB([c], [dlopen], [
245 libdl_name=c
246 DL_LIBS="-lc"
247 ], [
248 AC_MSG_ERROR([Cannot find dlopen in libdl nor libc. Use [LDFLAGS]=-Ldir to specify their location.])
249 ])
250])
251AC_SUBST(DL_LIBS)
252
253# Check if libdl has dlmopen()
254AC_CHECK_LIB([$libdl_name], [dlmopen], [
255 AC_DEFINE([HAVE_DLMOPEN], [1], [Define to 1 if dlmopen is available.])
256])
257
258# Require URCU >= 0.12 for DEFINE_URCU_TLS_INIT
259PKG_CHECK_MODULES([URCU], [liburcu >= 0.12])
260
261
ed6dd5d6
MJ
262## ##
263## User variables ##
264## ##
a423db3f 265
ed6dd5d6 266# Additional variables captured during ./configure
f1d4b810 267
ed6dd5d6 268AC_ARG_VAR([CLASSPATH], [Java class path])
94480b71 269
42330adc 270
ed6dd5d6
MJ
271## ##
272## Optionnal features selection ##
273## ##
f9ff7aa4 274
ed6dd5d6
MJ
275# numa integration
276# Enabled by default, except on some platforms
277AE_FEATURE_DEFAULT_ENABLE
278AE_FEATURE([numa],[disable NUMA support])
c95c332a 279
ed6dd5d6
MJ
280# Java JNI interface library
281# Disabled by default
282AE_FEATURE_DEFAULT_DISABLE
283AE_FEATURE([jni-interface], [build JNI interface between C and Java])
bfcda6ce 284
ed6dd5d6
MJ
285# Build the Java Logging API agent
286# Disabled by default
287AE_FEATURE_DEFAULT_DISABLE
288AE_FEATURE([java-agent-jul],[build the LTTng UST Java agent with JUL support])
e3073410 289
ed6dd5d6
MJ
290# Build the Java Log4j agent
291# Disabled by default
292AE_FEATURE_DEFAULT_DISABLE
293AE_FEATURE([java-agent-log4j],[build the LTTng UST Java agent with Log4j support])
d58d1454 294
ed6dd5d6
MJ
295# Build both Java agents
296# Disabled by default
297AE_FEATURE_DEFAULT_DISABLE
298AE_FEATURE([java-agent-all],[build the LTTng UST Java agent with all supported backends])
2b6f8df9 299
ed6dd5d6
MJ
300# Build the Python agent
301# Disabled by default
302AE_FEATURE_DEFAULT_DISABLE
303AE_FEATURE([python-agent],[build the LTTng UST Python agent])
2b6f8df9 304
ed6dd5d6
MJ
305# Build the examples
306# Disabled by default
307AE_FEATURE_DEFAULT_ENABLE
308AE_FEATURE([examples],[Do not build and install examples])
501f6777 309
ed6dd5d6
MJ
310# Man pages
311# Enabled by default
312AE_FEATURE_DEFAULT_ENABLE
313AE_FEATURE([man-pages],[Do not build and install man pages (already built in a distributed tarball)])
314
315# Systemtap sdt.h integration
316# Disabled by default
317AC_ARG_WITH([sdt],
318 [AS_HELP_STRING([--with-sdt], [provide SystemTap integration via sdt.h [default=no]])]
319)
501f6777 320
ed6dd5d6
MJ
321# Override the default runtime directory
322AC_ARG_WITH([lttng-system-rundir], [
323AS_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".]),
86adb855 324], [
ed6dd5d6 325 lttng_system_rundir="$withval"
86adb855 326], [
ed6dd5d6 327 lttng_system_rundir="/var/run/lttng"
86adb855 328])
501f6777 329
ed6dd5d6
MJ
330# Add the java command line arguments like '--wit-java-prefix'
331AX_JAVA_OPTIONS
501f6777 332
501f6777 333
ed6dd5d6
MJ
334## ##
335## Check for conflicting features selection ##
336## ##
501f6777 337
ed6dd5d6
MJ
338AE_IF_FEATURE_DISABLED([shared], [
339 AC_MSG_ERROR(LTTng-UST requires shared libraries to be enabled)
340])
501f6777 341
ed6dd5d6
MJ
342AE_IF_FEATURE_ENABLED([java-agent-all], [
343 AE_FEATURE_ENABLE([java-agent-jul])
344 AE_FEATURE_ENABLE([java-agent-log4j])
0e7d861a 345])
501f6777 346
1f0418c7 347
ed6dd5d6
MJ
348## ##
349## Check for optional features dependencies ##
350## ##
351
352# The numa integration requires libnuma
353AE_IF_FEATURE_ENABLED([numa], [
354 AC_CHECK_LIB([numa], [numa_available], [], [
355 AC_MSG_ERROR([dnl
356libnuma is not available. Please either install it (e.g. libnuma-dev) or use
357[LDFLAGS]=-Ldir to specify the right location, or use --disable-numa configure
358argument to disable NUMA support.
359 ])
360 ])
0e7d861a 361])
501f6777 362
ed6dd5d6
MJ
363# The JNI interface and Java Agents require a working Java JDK
364AS_IF([AE_IS_FEATURE_ENABLED([jni-interface]) || AE_IS_FEATURE_ENABLED([java-agent-jul]) || AE_IS_FEATURE_ENABLED([java-agent-log4j])], [
365 # We detected a java compiler earlier, make sure it works
366 AX_PROG_JAVAC_WORKS
367
368 # Get the CPPFLAGS required to build jni libaries
369 AX_JNI_INCLUDE_DIR
370 for jni_include_dir in $JNI_INCLUDE_DIRS; do
371 JNI_CPPFLAGS="$JNI_CPPFLAGS -I$jni_include_dir"
372 done
373
374 # Check for javah and jni.h
375 saved_CPPFLAGS="$CPPFLAGS"
376 CPPFLAGS="$CPPFLAGS $JNI_CPPFLAGS"
377 AX_PROG_JAVAH
378 CPPFLAGS="$saved_CPPFLAGS"
379])
c3e14096 380
ed6dd5d6
MJ
381# The log4j agent requires the log4j jar in the classpath
382AE_IF_FEATURE_ENABLED([java-agent-log4j], [
383 AX_CHECK_CLASS([org.apache.log4j.Logger])
384 AS_IF([test "x$ac_cv_class_org_apache_log4j_Logger" = "xno"], [
385 AC_MSG_ERROR([dnl
386The UST Java agent support for log4j was requested but the Log4j classes were
387not found. Please specify the location of the Log4j jar via the Java CLASSPATH
388environment variable, e.g. ./configure CLASSPATH="/path/to/log4j.jar"
389
390Current CLASSPATH: "$CLASSPATH"
391 ])
392 ])
86adb855 393])
4846fadc 394
ed6dd5d6
MJ
395# The python agent requires a python interpreter
396AE_IF_FEATURE_ENABLED([python-agent], [
397 AS_IF([test "x$PYTHON" = "x"], [
398 AC_MSG_ERROR([dnl
399Cannot find a suitable python interpreter. You can override it with the PYTHON
400environment variable.
401 ])
402 ])
4846fadc
AM
403])
404
ed6dd5d6
MJ
405# Check for asciidoc and xmlto if we enabled building the man pages.
406AE_IF_FEATURE_ENABLED([man-pages], [
407 AS_IF([test "x$ASCIIDOC" = "x" || test "x$XMLTO" = "x"], [
408 AE_IF_IN_GIT_REPO([
409 # This is an error because we're in the Git repo, which
410 # means the man pages are not already generated for us,
411 # thus asciidoc/xmlto are required because we were asked
412 # to build the man pages.
413 AC_MSG_ERROR([dnl
414Both asciidoc and xmlto are needed to build the LTTng-UST man pages. Use
415--disable-man-pages to disable building the man pages, in which case
416they will not be installed.
417 ])
418 ], [
419 # Only warn here: since we're in the tarball, the man
420 # pages should already be generated at this point, thus
421 # asciidoc/xmlto are not strictly required.
422 warn_prebuilt_man_pages=yes
423 ])
424 ], [
425 have_asciidoc_xmlto=yes
426 ])
427])
428
429AS_IF([test "x$with_sdt" = "xyes"], [
430 AC_MSG_CHECKING([STAP_PROBEV()])
431 AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
432 #define SDT_USE_VARIADIC
433 #include <sys/sdt.h>
434 void fct(void)
435 {
436 STAP_PROBEV(provider,name,1,2,3,4,5,6,7,8,9,10);
437 }
438 ]])], [
439 AC_MSG_RESULT([yes])
440 AC_DEFINE([LTTNG_UST_HAVE_SDT_INTEGRATION], [1], [SystemTap integration via sdt.h])
441 ], [
442 AC_MSG_RESULT([no])
443 AC_MSG_ERROR([dnl
444The sdt.h integration was requested but the STAP_PROBEV define cannot be used.
445Make sure it is installed, and up to date, or use CPPFLAGS=-I/path/ to specify
446a non-standard path to sys/sdt.h
447 ])
448 ])
86adb855 449])
ed6dd5d6
MJ
450
451
452AM_CONDITIONAL([HAVE_CMAKE], [test "x$CMAKE" != "x"])
453
454# Configuration options, which will be installed in the config.h
455AH_TEMPLATE([LTTNG_UST_HAVE_SDT_INTEGRATION], [SystemTap integration via sdt.h])
456
457
458AM_CONDITIONAL([ENABLE_UST_DL], [test "x${ac_cv_have_decl_RTLD_DI_LINKMAP}" = "xyes"])
459
460
461AM_CONDITIONAL([ENABLE_NUMA], [test "x$have_libnuma" = "xyes"])
462
463AM_CONDITIONAL([HAVE_PERF_EVENT], [test "x$ac_cv_header_linux_perf_event_h" = "xyes"])
464
465AM_CONDITIONAL([ENABLE_JNI_INTERFACE], [test "x$jni_interface" = "xyes"])
466AM_CONDITIONAL([ENABLE_JAVA_AGENT], [test "x$java_agent_jul" = "xyes" || test "x$java_agent_log4j" = "xyes"])
467AM_CONDITIONAL([ENABLE_JAVA_AGENT_WITH_JUL], [test "x$java_agent_jul" = "xyes"])
468AM_CONDITIONAL([ENABLE_JAVA_AGENT_WITH_LOG4J], [test "x$java_agent_log4j" = "xyes"])
469
470AM_CONDITIONAL([HAVE_JAVAH], [test "x$JAVAH" != "x"])
471
472AM_CONDITIONAL([ENABLE_PYTHON_AGENT], [test "x$python_agent" = "xyes"])
473
751d4e91 474AC_DEFINE_UNQUOTED([LTTNG_SYSTEM_RUNDIR], ["$lttng_system_rundir"],
86adb855 475 [LTTng system runtime directory])
751d4e91 476
49f89ab8 477AM_CONDITIONAL([ENABLE_GEN_TP_EXAMPLES], [test "x$PYTHON" != "x"])
2b90f1d3 478
08aa9a26
PP
479
480AM_CONDITIONAL([ENABLE_EXAMPLES], [test "x$enable_examples" != "xno"])
481
4ddbd0b7
PP
482# Export man page build condition: build the man pages if the user
483# asked for it, and if the tools are available.
41ad81d8 484AM_CONDITIONAL([ENABLE_MAN_PAGES], [test "x$man_pages_opt" != "xno"])
4ddbd0b7
PP
485AM_CONDITIONAL([HAVE_ASCIIDOC_XMLTO], [test "x$have_asciidoc_xmlto" = "xyes"])
486
f4a9899e
MJ
487
488# Defined in include/lttng/ust-version.h
489AC_DEFINE([LTTNG_UST_MAJOR_VERSION], ust_version_major, [LTTng UST major version])
490AC_DEFINE([LTTNG_UST_MINOR_VERSION], ust_version_minor, [LTTng UST minor version])
491AC_DEFINE([LTTNG_UST_PATCHLEVEL_VERSION], ust_version_patch, [LTTng UST patch version])
492AC_DEFINE([LTTNG_UST_VERSION], ["]ust_version["], [LTTng UST version string])
493AC_DEFINE([LTTNG_UST_LIB_SONAME_MAJOR], [ust_lib_version_current], [Major SONAME number of liblttng-ust])
494AC_DEFINE([LTTNG_UST_CTL_LIB_SONAME_MAJOR], [ust_ctl_lib_version_current], [Major SONAME number of liblttng-ust-ctl])
495
496
ff1ee9bc 497AM_CFLAGS="-Wall $URCU_CFLAGS $PTHREAD_CFLAGS"
e1c62734 498AC_SUBST(AM_CFLAGS)
fb54defd 499
04022848
MJ
500AM_CXXFLAGS="$AM_CFLAGS"
501AC_SUBST(AM_CXXFLAGS)
502
fb54defd
MJ
503# The order in which the include folders are searched is important.
504# The top_builddir should always be searched first in the event that a build
505# time generated file is included.
506AM_CPPFLAGS="-I\$(top_builddir)/include -I\$(top_srcdir)/include -include config.h"
507AC_SUBST(AM_CPPFLAGS)
508
e1c62734
MJ
509AC_SUBST(JNI_CPPFLAGS)
510
f4a9899e
MJ
511
512## ##
513## Output files generated by configure ##
514## ##
515
516# List of files to be generated from '.in' templates by AC_OUTPUT
55355fa5
JB
517AC_CONFIG_FILES([
518 Makefile
7ccf75d3
MD
519 doc/Makefile
520 doc/examples/Makefile
4ddbd0b7 521 doc/man/Makefile
69400ac4 522 include/Makefile
69400ac4 523 snprintf/Makefile
ebabbf58 524 libcounter/Makefile
49705576 525 libmsgpack/Makefile
4931a13e 526 libringbuffer/Makefile
69400ac4
MD
527 liblttng-ust-comm/Makefile
528 liblttng-ust/Makefile
529 liblttng-ust-ctl/Makefile
530 liblttng-ust-fork/Makefile
b13d93c2 531 liblttng-ust-dl/Makefile
95e6d268 532 liblttng-ust-fd/Makefile
69400ac4 533 liblttng-ust-java/Makefile
501f6777
CB
534 liblttng-ust-java-agent/Makefile
535 liblttng-ust-java-agent/java/Makefile
8e6b6350 536 liblttng-ust-java-agent/java/lttng-ust-agent-all/Makefile
8e57e02f
AM
537 liblttng-ust-java-agent/java/lttng-ust-agent-common/Makefile
538 liblttng-ust-java-agent/java/lttng-ust-agent-jul/Makefile
539 liblttng-ust-java-agent/java/lttng-ust-agent-log4j/Makefile
501f6777 540 liblttng-ust-java-agent/jni/Makefile
8ab5c06b 541 liblttng-ust-java-agent/jni/common/Makefile
501f6777
CB
542 liblttng-ust-java-agent/jni/jul/Makefile
543 liblttng-ust-java-agent/jni/log4j/Makefile
476037d9 544 liblttng-ust-libc-wrapper/Makefile
70d654f2 545 liblttng-ust-cyg-profile/Makefile
c3e14096 546 liblttng-ust-python-agent/Makefile
5b6ff569
PP
547 python-lttngust/Makefile
548 python-lttngust/setup.py
549 python-lttngust/lttngust/__init__.py
b25c5b37 550 tools/Makefile
6dd969b5 551 tests/Makefile
dbe6ade0
MJ
552 tests/compile/Makefile
553 tests/compile/ctf-types/Makefile
554 tests/compile/hello.cxx/Makefile
555 tests/compile/hello/Makefile
556 tests/compile/hello-many/Makefile
557 tests/compile/same_line_tracepoint/Makefile
558 tests/compile/test-app-ctx/Makefile
a44af49d 559 tests/benchmark/Makefile
dbe6ade0 560 tests/unit/gcc-weak-hidden/Makefile
49705576 561 tests/unit/libmsgpack/Makefile
dbe6ade0 562 tests/unit/Makefile
8707de35 563 tests/unit/libringbuffer/Makefile
dbe6ade0
MJ
564 tests/unit/pthread_name/Makefile
565 tests/unit/snprintf/Makefile
566 tests/unit/ust-elf/Makefile
9a4b88ff 567 tests/utils/Makefile
74a6d87b 568 lttng-ust.pc
a1acf2a6 569 lttng-ust-ctl.pc
55355fa5 570])
1f9eff07 571
1304f3df 572AC_OUTPUT
1f9eff07 573
94480b71 574
f4a9899e
MJ
575## ##
576## Mini-report on what will be built. ##
577## ##
94480b71
MJ
578
579PPRINT_INIT
580PPRINT_SET_INDENT(1)
581PPRINT_SET_TS(38)
582
2770ab16 583AS_ECHO
f4a9899e
MJ
584AS_IF([test -n "ust_version_name"], [
585 AS_ECHO("${PPRINT_COLOR_BLDBLU}LTTng-ust $PACKAGE_VERSION \"ust_version_name\"$PPRINT_COLOR_RST")
586], [
587 AS_ECHO("${PPRINT_COLOR_BLDBLU}LTTng-ust $PACKAGE_VERSION")
588])
589
2a5b1cfe 590AS_ECHO
649282a8 591
f4a9899e
MJ
592AS_IF([test -n "ust_version_description"], [
593 AS_IF([test -n "$FOLD"], [
594 AS_ECHO("`AS_ECHO("ust_version_description") | $FOLD -s`")
595 ], [
596 AS_ECHO("ust_version_description")
597 ])
598 AS_ECHO
599])
94480b71 600
94480b71
MJ
601PPRINT_SUBTITLE([System])
602
603PPRINT_PROP_STRING([Target architecture], $host_cpu)
604
dd08adc1 605AS_IF([test "x$unsupported_arch" = "xyes"],[
94480b71
MJ
606 PPRINT_WARN([Your architecture ($host_cpu) is unsupported, using safe default of no unaligned access.])
607])
608
609AS_ECHO
610PPRINT_SUBTITLE([Features])
611PPRINT_SET_INDENT(1)
612
613test "x$with_sdt" = "xyes" && value=1 || value=0
614PPRINT_PROP_BOOL_CUSTOM([sdt.h integration], $value, [use --with-sdt])
615
ed6dd5d6 616AE_IS_FEATURE_ENABLED([java-agent-jul]) && value=1 || value=0
94480b71
MJ
617PPRINT_PROP_BOOL_CUSTOM([Java agent (JUL support)], $value, [use --enable-java-agent-jul])
618
ed6dd5d6 619AE_IS_FEATURE_ENABLED([java-agent-log4j]) && value=1 || value=0
94480b71
MJ
620PPRINT_PROP_BOOL_CUSTOM([Java agent (Log4j support)], $value, [use --enable-java-agent-log4j])
621
ed6dd5d6 622AE_IS_FEATURE_ENABLED([jni-interface]) && value=1 || value=0
94480b71
MJ
623PPRINT_PROP_BOOL_CUSTOM([JNI interface (JNI)], $value, [use --enable-jni-interface])
624
ed6dd5d6 625AE_IS_FEATURE_ENABLED([python-agent]) && value=1 || value=0
94480b71 626PPRINT_PROP_BOOL_CUSTOM([Python agent], $value, [use --enable-python-agent])
1f9eff07 627
eeef0055 628test "x$ac_cv_header_linux_perf_event_h" = "xyes" && value=1 || value=0
3207efee
MJ
629PPRINT_PROP_BOOL_CUSTOM([Perf event integration], $value)
630
ed6dd5d6 631AE_IS_FEATURE_ENABLED([numa]) && value=1 || value=0
bfcda6ce
MD
632PPRINT_PROP_BOOL([NUMA], $value)
633
2a5b1cfe 634AS_ECHO
94480b71 635PPRINT_SET_INDENT(0)
501f6777 636
ed6dd5d6 637AE_IS_FEATURE_ENABLED([examples]) && value=1 || value=0
08aa9a26
PP
638PPRINT_PROP_BOOL([Build and install examples], $value, $PPRINT_COLOR_SUBTITLE)
639
94480b71
MJ
640# man pages build enabled/disabled
641m4_pushdef([build_man_pages_msg], [Build and install man pages])
501f6777 642
ed6dd5d6
MJ
643AE_IF_FEATURE_ENABLED([man-pages], [
644 AE_IF_IN_GIT_REPO([
645 PPRINT_PROP_BOOL([build_man_pages_msg], 1, $PPRINT_COLOR_SUBTITLE)
646 ], [
647 AS_IF([test "x$have_asciidoc_xmlto" = "xyes"], [
648 PPRINT_PROP_BOOL([build_man_pages_msg], 1, $PPRINT_COLOR_SUBTITLE)
649 ], [
650 PPRINT_PROP_STRING([build_man_pages_msg],
651 [${PPRINT_COLOR_BLDGRN}yes (already built)],
652 $PPRINT_COLOR_SUBTITLE)
653 ])
654 ])
94480b71 655], [
ed6dd5d6 656 PPRINT_PROP_BOOL([build_man_pages_msg], 0, $PPRINT_COLOR_SUBTITLE)
94480b71 657])
501f6777 658
94480b71 659m4_popdef([build_man_pages_msg])
1f9eff07 660
94480b71 661PPRINT_SET_INDENT(1)
c3e14096 662
94480b71
MJ
663report_bindir="`eval eval echo $bindir`"
664report_libdir="`eval eval echo $libdir`"
1f9eff07 665
94480b71 666# Print the bindir and libdir this `make install' will install into.
2a5b1cfe 667AS_ECHO
94480b71
MJ
668PPRINT_SUBTITLE([Install directories])
669PPRINT_PROP_STRING([Binaries], [$report_bindir])
670PPRINT_PROP_STRING([Libraries], [$report_libdir])
0ea8bd08 671
94480b71
MJ
672AS_ECHO
673PPRINT_SUBTITLE([System directories])
674
675PPRINT_PROP_STRING([lttng-sessiond rundir], [$lttng_system_rundir])
676
677PPRINT_SET_INDENT(0)
678
679AS_IF([test "x$warn_prebuilt_man_pages" = "xyes" ], [
ed6dd5d6
MJ
680 AS_ECHO
681 PPRINT_WARN([dnl
682Both asciidoc and xmlto are needed to build the LTTng-UST man pages.
1f9eff07 683
94480b71
MJ
684Note that the man pages are already built in this distribution tarball,
685therefore asciidoc and xmlto are only needed if you intend to modify
686their sources.
687
688Use --disable-man-pages to completely disable building and installing
689the man pages.])
690])
This page took 0.072989 seconds and 4 git commands to generate.