Move to kernel style SPDX license identifiers
[lttng-ust.git] / configure.ac
CommitLineData
c0c0989a
MJ
1# SPDX-License-Identifier: LGPL-2.1-only
2
16f9d99c 3dnl Version infos
58f107eb 4m4_define([V_MAJOR], [2])
222fa453 5m4_define([V_MINOR], [13])
58f107eb 6m4_define([V_PATCH], [0])
222fa453
MJ
7m4_define([V_EXTRA], [pre])
8m4_define([V_NAME], [[Codename TBD]])
9m4_define([V_DESC], [[Description TBD]])
58f107eb 10
94480b71
MJ
11m4_define([V_STRING], [V_MAJOR.V_MINOR.V_PATCH])
12m4_ifdef([V_EXTRA], [m4_append([V_STRING], [-V_EXTRA])])
13
90e5d8e4 14AC_PREREQ([2.69])
093c3f9b 15AC_INIT([lttng-ust], V_STRING, [mathieu dot desnoyers at efficios dot com], [], [https://lttng.org])
a334646a 16
94480b71
MJ
17dnl Substitute minor/major/patchlevel version numbers
18AC_SUBST([MAJOR_VERSION], [V_MAJOR])
19AC_SUBST([MINOR_VERSION], [V_MINOR])
20AC_SUBST([PATCHLEVEL_VERSION], [V_PATCH])
21
a334646a
MD
22# Following the numbering scheme proposed by libtool for the library version
23# http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
41a2a9aa 24# This is the library version of liblttng-ust.
05e8ff1f 25m4_define([UST_LIB_V_MAJOR], [1])
23e08412
FD
26m4_define([UST_LIB_V_MINOR], [0])
27m4_define([UST_LIB_V_PATCH], [0])
28
29AC_SUBST([LTTNG_UST_LIBRARY_VERSION], [UST_LIB_V_MAJOR:UST_LIB_V_MINOR:UST_LIB_V_PATCH])
6be9efc1 30AC_DEFINE([CONFIG_LTTNG_UST_LIBRARY_VERSION_MAJOR], [UST_LIB_V_MAJOR], [Major SONAME number of the ust library])
a334646a
MD
31# note: remember to update tracepoint.h dlopen() to match this version
32# number. TODO: eventually automate by exporting the major number.
33
41a2a9aa
MD
34# This is the library version of liblttng-ust-ctl, used internally by
35# liblttng-ust, lttng-sessiond, and lttng-consumerd.
b2c5f61a 36AC_SUBST([LTTNG_UST_CTL_LIBRARY_VERSION], [4:0:0])
41a2a9aa 37
fb54defd 38AC_CONFIG_HEADERS([include/config.h include/lttng/ust-config.h])
55355fa5 39AC_CONFIG_AUX_DIR([config])
94480b71
MJ
40AC_CONFIG_MACRO_DIR([m4])
41AC_CONFIG_SRCDIR([include/lttng/tracepoint.h])
42
9441df61
PMF
43AC_CANONICAL_TARGET
44AC_CANONICAL_HOST
94480b71 45
0f6f0e89 46AM_INIT_AUTOMAKE([1.12 foreign dist-bzip2 no-dist-gzip tar-ustar nostdinc -Wall -Wno-portability -Werror])
846154aa 47AM_MAINTAINER_MODE([enable])
94480b71 48
80268473
MJ
49# Enable silent rules by default
50AM_SILENT_RULES([yes])
4846fadc 51
94480b71
MJ
52# Checks for C compiler
53AC_USE_SYSTEM_EXTENSIONS
54AC_SYS_LARGEFILE
55AC_PROG_CC
f436dc74
JG
56# AC_PROG_CC_STDC was merged in AC_PROG_CC in autoconf 2.70
57m4_version_prereq([2.70], [], [AC_PROG_CC_STDC])
94480b71 58AC_PROG_CXX
15b385c8 59AX_CXX_COMPILE_STDCXX([11])
b8a1677c 60RW_PROG_CXX_WORKS
94480b71 61AM_CONDITIONAL([CXX_WORKS], [test "x$rw_cv_prog_cxx_works" = "xyes"])
23c8854a 62
94480b71
MJ
63# Check if the compiler support weak symbols
64AX_SYS_WEAK_ALIAS
65
66AS_IF([test "x${ax_cv_sys_weak_alias}" = "xno"], [
67 AC_MSG_ERROR([Your platform doesn't support weak symbols.])
68])
161239e0 69
94480b71 70# Checks for programs.
8aeb3cae 71AM_PROG_AR
46a73fe4 72AC_PROG_SED
faebb418 73AC_PROG_GREP
85e09133 74AC_PROG_LN_S
4c70c05c 75AC_PROG_MKDIR_P
94480b71
MJ
76AC_PROG_MAKE_SET
77AC_CHECK_PROG([HAVE_CMAKE], [cmake], ["yes"])
78AM_CONDITIONAL([HAVE_CMAKE], [test "x$HAVE_CMAKE" = "xyes"])
46a73fe4 79
faebb418 80# libtool link_all_deplibs fixup. See http://bugs.lttng.org/issues/321.
86adb855 81AC_ARG_ENABLE([libtool-linkdep-fixup], [
94480b71 82AS_HELP_STRING([--disable-libtool-linkdep-fixup], [disable the libtool fixup for linking all dependent libraries (link_all_deplibs)])
86adb855
PP
83], [
84 libtool_fixup=$enableval
85], [
86 libtool_fixup=yes
87])
88
89AS_IF([test "x$libtool_fixup" = "xyes"], [
093c3f9b 90 libtool_m4="$srcdir/m4/libtool.m4"
86adb855
PP
91 libtool_flag_pattern=".*link_all_deplibs\s*,\s*\$1\s*)"
92 AC_MSG_CHECKING([for occurence(s) of link_all_deplibs = no in $libtool_m4])
93 libtool_flag_pattern_count=$(grep -c "$libtool_flag_pattern\s*=\s*no" $libtool_m4)
94
95 AS_IF([test $libtool_flag_pattern_count -ne 0], [
96 AC_MSG_RESULT([$libtool_flag_pattern_count])
97 AC_MSG_WARN([the detected libtool will not link all dependencies, forcing link_all_deplibs = unknown])
94480b71 98 $SED -i "s/\($libtool_flag_pattern\)\s*=\s*no/\1=unknown/g" $libtool_m4
86adb855
PP
99 ], [
100 AC_MSG_RESULT([none])
101 ])
102])
94480b71 103LT_INIT([disable-static])
faebb418 104
94480b71
MJ
105AC_MSG_CHECKING([whether shared libraries are enabled])
106AS_IF([test "x$enable_shared" = "xyes"], [
107 AC_MSG_RESULT([yes])
108], [
109 AC_MSG_RESULT([no])
110 AC_MSG_ERROR([LTTng-UST requires shared libraries to be enabled])
111])
86adb855 112
94480b71
MJ
113# Checks for typedefs, structures, and compiler characteristics.
114AC_C_INLINE
115AC_TYPE_INT8_T
116AC_TYPE_INT16_T
117AC_TYPE_INT32_T
118AC_TYPE_INT64_T
119AC_TYPE_MODE_T
120AC_TYPE_OFF_T
121AC_TYPE_PID_T
122AC_TYPE_SIZE_T
123AC_TYPE_SSIZE_T
124AC_TYPE_UID_T
125AC_TYPE_UINT8_T
126AC_TYPE_UINT16_T
127AC_TYPE_UINT32_T
128AC_TYPE_UINT64_T
129AC_CHECK_TYPES([ptrdiff_t])
130
131AX_C___ATTRIBUTE__
132AS_IF([test "x$ax_cv___attribute__" = "xyes"],
133 [:],
134 [AC_MSG_ERROR([The compiler does not support __attribute__ extensions])])
86adb855 135
d9c56a93
MJ
136AX_PTHREAD(,[AC_MSG_ERROR([Could not configure pthreads support])])
137
94480b71
MJ
138# Checks for library functions.
139AC_FUNC_CHOWN
140AC_FUNC_FORK
141AC_FUNC_MMAP
142AC_FUNC_REALLOC
143AC_FUNC_STRERROR_R
144AC_FUNC_STRNLEN
145AC_CHECK_FUNCS([ \
146 atexit \
147 clock_gettime \
148 ftruncate \
149 getpagesize \
150 gettimeofday \
151 localeconv \
152 memchr \
153 memmove \
154 memset \
155 mkdir \
156 munmap \
157 realpath \
158 sched_getcpu \
159 socket \
160 strchr \
161 strdup \
162 strerror \
163 strtol \
0f6f0e89 164 strtoul \
94480b71 165 sysconf \
86adb855 166])
340f7763 167
d9c56a93
MJ
168# Check for pthread_setname_np and its signature
169LTTNG_PTHREAD_SETNAME_NP
170
94480b71
MJ
171# AC_FUNC_MALLOC causes problems when cross-compiling.
172#AC_FUNC_MALLOC
f1d4b810 173
94480b71
MJ
174# Checks for header files.
175AC_HEADER_STDBOOL
176AC_CHECK_HEADERS([ \
177 arpa/inet.h \
178 fcntl.h \
179 float.h \
180 limits.h \
181 locale.h \
182 stddef.h \
183 sys/socket.h \
184 sys/time.h \
185 wchar.h \
0e7d861a 186])
f1d4b810 187
c95c332a
MJ
188# Set architecture specific options
189AS_CASE([$host_cpu],
190 [i[[3456]]86], [],
191 [x86_64], [],
192 [amd64], [],
193 [powerpc], [],
194 [ppc64], [],
195 [ppc64le], [],
196 [powerpc64], [],
197 [powerpc64le], [],
198 [s390], [NO_UNALIGNED_ACCESS=1],
199 [s390x], [NO_UNALIGNED_ACCESS=1],
200 [arm*], [
201 NO_UNALIGNED_ACCESS=1
202 NO_NUMA=1
203 ],
204 [aarch64*], [NO_UNALIGNED_ACCESS=1],
205 [mips*], [NO_UNALIGNED_ACCESS=1],
206 [tile*], [NO_UNALIGNED_ACCESS=1],
207 [
208 UNSUPPORTED_ARCH=1
209 NO_UNALIGNED_ACCESS=1
210 ])
211
37a5fa45
MJ
212# Set os specific options
213AS_CASE([$host_os],
214 [freebsd*], [NO_NUMA=1]
215)
216
94480b71
MJ
217# Configuration options, which will be installed in the config.h
218AH_TEMPLATE([LTTNG_UST_HAVE_EFFICIENT_UNALIGNED_ACCESS], [Use efficient unaligned access.])
219AH_TEMPLATE([LTTNG_UST_HAVE_SDT_INTEGRATION], [SystemTap integration via sdt.h])
220AH_TEMPLATE([LTTNG_UST_HAVE_PERF_EVENT], [Perf event integration via perf_event.h])
221
b54f2130 222# Checks for libraries.
86adb855 223AC_CHECK_LIB([dl], [dlopen], [
42330adc 224 libdl_name=dl
9d4d2a63 225 DL_LIBS="-ldl"
86adb855 226], [
c6c454ab 227 #libdl not found, check for dlopen in libc.
86adb855 228 AC_CHECK_LIB([c], [dlopen], [
42330adc 229 libdl_name=c
9d4d2a63 230 DL_LIBS="-lc"
86adb855 231 ], [
c6c454ab
MD
232 AC_MSG_ERROR([Cannot find dlopen in libdl nor libc. Use [LDFLAGS]=-Ldir to specify their location.])
233 ])
234])
9d4d2a63 235AC_SUBST(DL_LIBS)
86adb855 236
42330adc
JR
237# Check if libdl has dlmopen support.
238AH_TEMPLATE([HAVE_DLMOPEN], ["Define to 1 if dlmopen is available."])
239AC_CHECK_LIB([$libdl_name], [dlmopen],
240 [AC_DEFINE([HAVE_DLMOPEN], [1])]
241)
242
f9ff7aa4
RN
243# Check for dlfcn.h
244AC_CHECK_HEADER([dlfcn.h])
86adb855
PP
245AS_IF([test "x${ac_cv_header_dlfcn_h}" = "xyes"], [
246 AC_CHECK_DECLS([RTLD_DI_LINKMAP], [], [], [
86adb855
PP
247 #include <dlfcn.h>
248 ])
249], [
250 ac_cv_have_decl_RTLD_DI_LINKMAP="no"
251])
252
f9ff7aa4
RN
253AM_CONDITIONAL([HAVE_DLINFO], [test "x${ac_cv_have_decl_RTLD_DI_LINKMAP}" = "xyes"])
254
ff1ee9bc
MJ
255# Require URCU >= 0.12 for DEFINE_URCU_TLS_INIT
256PKG_CHECK_MODULES([URCU], [liburcu >= 0.12])
4b68c31f 257
bfcda6ce 258# numa.h integration
c95c332a
MJ
259AS_IF([test "x$NO_NUMA" = "x1"],[
260 AS_IF([test "x$enable_numa" = "x" ], [enable_numa=no])
261])
262
bfcda6ce
MD
263AC_ARG_ENABLE([numa], [
264AS_HELP_STRING([--disable-numa], [disable NUMA support])
265], [
266 enable_numa=$enableval
267], [
268 enable_numa=yes
269])
270
271AS_IF([test "x$enable_numa" = "xyes"], [
272 # numa - check that numa lib is available
126bf5f4
MD
273 AC_CHECK_LIB([numa], [numa_available], [],
274[AC_MSG_ERROR([libnuma is not available. Please either install it (e.g. libnuma-dev) or use [LDFLAGS]=-Ldir to specify the right location, or use --disable-numa configure argument to disable NUMA support.])])
bfcda6ce
MD
275 have_libnuma=yes
276])
277AM_CONDITIONAL([HAVE_LIBNUMA], [test "x$have_libnuma" = "xyes"])
e3073410 278
d58d1454
MD
279# optional linux/perf_event.h
280AC_CHECK_HEADERS([linux/perf_event.h], [have_perf_event=yes], [])
d58d1454 281
723f78e3
MD
282# Perf event counters are supported on all architectures supported by
283# perf, using the read system call as fallback.
284AM_CONDITIONAL([HAVE_PERF_EVENT], [test "x$have_perf_event" = "xyes"])
1113f842 285
723f78e3 286AS_IF([test "x$have_perf_event" = "xyes"], [
0e7d861a
PP
287 AC_DEFINE([LTTNG_UST_HAVE_PERF_EVENT], [1])
288])
d58d1454 289
0e7d861a
PP
290AS_IF([test "x$NO_UNALIGNED_ACCESS" = "x"], [
291 AC_DEFINE([LTTNG_UST_HAVE_EFFICIENT_UNALIGNED_ACCESS], [1])
292])
2699970a 293
2b6f8df9 294# Check for JNI header files if requested
86adb855 295AC_ARG_ENABLE([jni-interface], [
94480b71 296AS_HELP_STRING([--enable-jni-interface], [build JNI interface between C and Java. Needs Java include files [default=no]])
86adb855
PP
297], [
298 jni_interface=$enableval
299], [
300 jni_interface=no
301])
2b6f8df9 302
b2263155 303AM_CONDITIONAL([BUILD_JNI_INTERFACE], [test "x$jni_interface" = "xyes"])
2b6f8df9 304
501f6777 305
86adb855 306AC_ARG_ENABLE([java-agent-jul], [
94480b71 307AS_HELP_STRING([--enable-java-agent-jul], [build the LTTng UST Java agent with JUL support [default=no]])
86adb855
PP
308], [
309 java_agent_jul=$enableval
310], [
311 java_agent_jul=no
312])
501f6777 313
86adb855 314AC_ARG_ENABLE([java-agent-log4j], [
94480b71 315AS_HELP_STRING([--enable-java-agent-log4j], [build the LTTng UST Java agent with Log4j support [default=no]])
86adb855
PP
316], [
317 java_agent_log4j=$enableval
318], [
319 java_agent_log4j=no
320])
501f6777 321
86adb855 322AC_ARG_ENABLE([java-agent-all], [
94480b71 323AS_HELP_STRING([--enable-java-agent-all], [build the LTTng UST Java agent with all supported backends [default=no]])
86adb855
PP
324], [
325 java_agent_jul=$enableval
326 java_agent_log4j=$enableval
327], [:])
501f6777
CB
328
329AM_CONDITIONAL([BUILD_JAVA_AGENT], [test "x$java_agent_jul" = "xyes" || test "x$java_agent_log4j" = "xyes"])
330AM_CONDITIONAL([BUILD_JAVA_AGENT_WITH_JUL], [test "x$java_agent_jul" = "xyes"])
331AM_CONDITIONAL([BUILD_JAVA_AGENT_WITH_LOG4J], [test "x$java_agent_log4j" = "xyes"])
332
0e7d861a
PP
333AS_IF([test "x$jni_interface" = "xyes" || test "x$java_agent_jul" = "xyes" || test "x$java_agent_log4j" = "xyes"], [
334 AX_JAVA_OPTIONS
335 AX_PROG_JAVAC
336 AX_PROG_JAVA
337 AX_PROG_JAR
b1035e61 338 AC_ARG_VAR([CLASSPATH], [Java class path])
501f6777 339
0e7d861a
PP
340 AX_JNI_INCLUDE_DIR
341 for JNI_INCLUDE_DIR in $JNI_INCLUDE_DIRS
342 do
e1c62734 343 JNI_CPPFLAGS="$JNI_CPPFLAGS -I$JNI_INCLUDE_DIR"
0e7d861a 344 done
501f6777 345
e1c62734
MJ
346 saved_CPPFLAGS="$CPPFLAGS"
347 CPPFLAGS="$CPPFLAGS $JNI_CPPFLAGS"
0e7d861a 348 AX_PROG_JAVAH
e1c62734 349 CPPFLAGS="$saved_CPPFLAGS"
0e7d861a 350])
501f6777 351
1f0418c7
MD
352AM_CONDITIONAL([HAVE_JAVAH], [test "x$JAVAH" != "x"])
353
0e7d861a
PP
354AS_IF([test "x$java_agent_log4j" = "xyes"], [
355 AX_CHECK_CLASSPATH
0e7d861a 356 AX_CHECK_CLASS([org.apache.log4j.Logger])
0e7d861a
PP
357 AS_IF([test "x$ac_cv_class_org_apache_log4j_Logger" = "xno"], [
358 AC_MSG_ERROR([The UST Java agent support for log4j was requested but the Log4j classes were not found. Please specify the location of the Log4j jar via the Java CLASSPATH e.g: export CLASSPATH="/path/to/log4j.jar"])
359 ])
360])
501f6777 361
c3e14096 362# Option to build the python agent
86adb855 363AC_ARG_ENABLE([python-agent], [
94480b71 364AS_HELP_STRING([--enable-python-agent], [build the LTTng UST Python agent [default=no]])
86adb855
PP
365], [
366 python_agent=$enableval
367], [:])
c3e14096 368AM_CONDITIONAL([BUILD_PYTHON_AGENT], [test "x$python_agent" = "xyes"])
0e7d861a 369AS_IF([test "x$python_agent" = "xyes"], [
55c9e5ae 370 AM_PATH_PYTHON([2.7])
0e7d861a 371])
c3e14096 372
4846fadc 373# sdt.h integration
86adb855 374AC_ARG_WITH([sdt], [
94480b71 375AS_HELP_STRING([--with-sdt], [provide SystemTap integration via sdt.h [default=no]])
86adb855
PP
376], [
377 with_sdt=$withval
378], [
379 with_sdt="no"
380])
4846fadc 381
86adb855 382AS_IF([test "x$with_sdt" = "xyes"], [
491f30fe
MD
383 AC_MSG_CHECKING([STAP_PROBEV()])
384 AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
86adb855
PP
385 #define SDT_USE_VARIADIC
386 #include <sys/sdt.h>
387 void fct(void)
388 {
389 STAP_PROBEV(provider,name,1,2,3,4,5,6,7,8,9,10);
390 }
391 ]])], [
491f30fe 392 AC_MSG_RESULT([yes])
562c813a 393 AC_DEFINE([LTTNG_UST_HAVE_SDT_INTEGRATION], [1])
86adb855 394 ], [
491f30fe 395 AC_MSG_RESULT([no])
135987a5 396 AC_MSG_ERROR([The sdt.h integration was requested but the STAP_PROBEV define cannot be used. Make sure it is installed, and up to date, or use CPPFLAGS=-I/path/ to specify a non-standard path to sys/sdt.h])
4846fadc
AM
397 ])
398])
399
86adb855 400AC_ARG_WITH([lttng-system-rundir], [
94480b71 401AS_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
PP
402], [
403 lttng_system_rundir="$withval"
404], [
405 lttng_system_rundir="/var/run/lttng"
406])
751d4e91 407AC_DEFINE_UNQUOTED([LTTNG_SYSTEM_RUNDIR], ["$lttng_system_rundir"],
86adb855 408 [LTTng system runtime directory])
751d4e91 409
86adb855 410AC_CHECK_PROG([BUILD_GEN_TP_EXAMPLES], [python], ["yes"])
0d8ba43d 411AM_CONDITIONAL([BUILD_GEN_TP_EXAMPLES], [test "x$BUILD_GEN_TP_EXAMPLES" = "xyes"])
2b90f1d3 412
08aa9a26
PP
413# Enable building examples
414AC_ARG_ENABLE(
415 examples,
416 AS_HELP_STRING(
417 [--disable-examples],
418 [Do not build and install examples]
419 ),
420 [enable_examples=$enableval],
421 [enable_examples=yes]
422)
423
424AM_CONDITIONAL([ENABLE_EXAMPLES], [test "x$enable_examples" != "xno"])
425
4ddbd0b7
PP
426# Set $IN_GIT_REPO if we're in the Git repository; the `bootstrap` file
427# is not distributed in tarballs.
428AS_IF([test -f "$srcdir/bootstrap"], [in_git_repo=yes], [in_git_repo=no])
429AM_CONDITIONAL([IN_GIT_REPO], [test "x$in_git_repo" = "xyes"])
430
431# Enable building man pages (user's intention).
432AC_ARG_ENABLE(
433 man-pages,
434 AS_HELP_STRING(
435 [--disable-man-pages],
436 [Do not build and install man pages (already built in a distributed tarball)]
437 ),
438 [man_pages_opt=$enableval],
439 [man_pages_opt=yes]
440)
441
442# Check for asciidoc and xmlto if we enabled building the man pages.
443have_asciidoc_xmlto=no
94480b71 444warn_prebuilt_man_pages=no
4ddbd0b7
PP
445
446AS_IF([test "x$man_pages_opt" = "xyes"], [
447 AC_PATH_PROG([ASCIIDOC], [asciidoc], [no])
448 AC_PATH_PROG([XMLTO], [xmlto], [no])
449
450 AS_IF([test "x$ASCIIDOC" = "xno" || test "x$XMLTO" = "xno"], [
451 AS_IF([test "x$in_git_repo" = "xyes"], [
452 # This is an error because we're in the Git repo, which
453 # means the man pages are not already generated for us,
454 # thus asciidoc/xmlto are required because we were asked
455 # to build the man pages.
456 AC_MSG_ERROR([
457Both asciidoc and xmlto are needed to build the LTTng-UST man pages. Use
458--disable-man-pages to disable building the man pages, in which case
459they will not be installed.
460 ])
461 ], [
462 # Only warn here: since we're in the tarball, the man
463 # pages should already be generated at this point, thus
464 # asciidoc/xmlto are not strictly required.
94480b71 465 warn_prebuilt_man_pages=yes
4ddbd0b7
PP
466 ])
467 ], [
468 have_asciidoc_xmlto=yes
469 ])
470])
471
472# Export man page build condition: build the man pages if the user
473# asked for it, and if the tools are available.
474AM_CONDITIONAL([MAN_PAGES_OPT], [test "x$man_pages_opt" != "xno"])
475AM_CONDITIONAL([HAVE_ASCIIDOC_XMLTO], [test "x$have_asciidoc_xmlto" = "xyes"])
476
2b4444ce
PP
477# Default values
478AC_DEFUN([_AC_DEFINE_AND_SUBST], [
479 AC_DEFINE_UNQUOTED([CONFIG_$1], [$2], [$1])
480 $1="$2"
481 AC_SUBST([$1])
482])
483
484_AC_DEFINE_AND_SUBST([LTTNG_UST_DEFAULT_CONSTRUCTOR_TIMEOUT_MS], [3000])
485
ff1ee9bc 486AM_CFLAGS="-Wall $URCU_CFLAGS $PTHREAD_CFLAGS"
e1c62734 487AC_SUBST(AM_CFLAGS)
fb54defd 488
04022848
MJ
489AM_CXXFLAGS="$AM_CFLAGS"
490AC_SUBST(AM_CXXFLAGS)
491
fb54defd
MJ
492# The order in which the include folders are searched is important.
493# The top_builddir should always be searched first in the event that a build
494# time generated file is included.
495AM_CPPFLAGS="-I\$(top_builddir)/include -I\$(top_srcdir)/include -include config.h"
496AC_SUBST(AM_CPPFLAGS)
497
e1c62734
MJ
498AC_SUBST(JNI_CPPFLAGS)
499
55355fa5
JB
500AC_CONFIG_FILES([
501 Makefile
7ccf75d3
MD
502 doc/Makefile
503 doc/examples/Makefile
4ddbd0b7 504 doc/man/Makefile
69400ac4 505 include/Makefile
b728d87e 506 include/lttng/ust-version.h
69400ac4 507 snprintf/Makefile
ebabbf58 508 libcounter/Makefile
49705576 509 libmsgpack/Makefile
4931a13e 510 libringbuffer/Makefile
69400ac4
MD
511 liblttng-ust-comm/Makefile
512 liblttng-ust/Makefile
513 liblttng-ust-ctl/Makefile
514 liblttng-ust-fork/Makefile
b13d93c2 515 liblttng-ust-dl/Makefile
95e6d268 516 liblttng-ust-fd/Makefile
69400ac4 517 liblttng-ust-java/Makefile
501f6777
CB
518 liblttng-ust-java-agent/Makefile
519 liblttng-ust-java-agent/java/Makefile
8e6b6350 520 liblttng-ust-java-agent/java/lttng-ust-agent-all/Makefile
8e57e02f
AM
521 liblttng-ust-java-agent/java/lttng-ust-agent-common/Makefile
522 liblttng-ust-java-agent/java/lttng-ust-agent-jul/Makefile
523 liblttng-ust-java-agent/java/lttng-ust-agent-log4j/Makefile
501f6777 524 liblttng-ust-java-agent/jni/Makefile
8ab5c06b 525 liblttng-ust-java-agent/jni/common/Makefile
501f6777
CB
526 liblttng-ust-java-agent/jni/jul/Makefile
527 liblttng-ust-java-agent/jni/log4j/Makefile
476037d9 528 liblttng-ust-libc-wrapper/Makefile
70d654f2 529 liblttng-ust-cyg-profile/Makefile
c3e14096 530 liblttng-ust-python-agent/Makefile
5b6ff569
PP
531 python-lttngust/Makefile
532 python-lttngust/setup.py
533 python-lttngust/lttngust/__init__.py
b25c5b37 534 tools/Makefile
6dd969b5 535 tests/Makefile
dbe6ade0
MJ
536 tests/compile/Makefile
537 tests/compile/ctf-types/Makefile
538 tests/compile/hello.cxx/Makefile
539 tests/compile/hello/Makefile
540 tests/compile/hello-many/Makefile
541 tests/compile/same_line_tracepoint/Makefile
542 tests/compile/test-app-ctx/Makefile
a44af49d 543 tests/benchmark/Makefile
dbe6ade0 544 tests/unit/gcc-weak-hidden/Makefile
49705576 545 tests/unit/libmsgpack/Makefile
dbe6ade0 546 tests/unit/Makefile
8707de35 547 tests/unit/libringbuffer/Makefile
dbe6ade0
MJ
548 tests/unit/pthread_name/Makefile
549 tests/unit/snprintf/Makefile
550 tests/unit/ust-elf/Makefile
9a4b88ff 551 tests/utils/Makefile
74a6d87b 552 lttng-ust.pc
a1acf2a6 553 lttng-ust-ctl.pc
55355fa5 554])
1f9eff07 555
bf261856
JR
556# Create link for python agent for the VPATH guru.
557AC_CONFIG_LINKS([
5b6ff569
PP
558 python-lttngust/lttngust/agent.py:python-lttngust/lttngust/agent.py
559 python-lttngust/lttngust/cmd.py:python-lttngust/lttngust/cmd.py
e7bf4968 560 python-lttngust/lttngust/compat.py:python-lttngust/lttngust/compat.py
5b6ff569
PP
561 python-lttngust/lttngust/debug.py:python-lttngust/lttngust/debug.py
562 python-lttngust/lttngust/loghandler.py:python-lttngust/lttngust/loghandler.py
bf261856
JR
563])
564
dbe6ade0 565AC_CONFIG_FILES([tests/unit/ust-elf/test_ust_elf],[chmod +x tests/unit/ust-elf/test_ust_elf])
37b3de59 566
1304f3df 567AC_OUTPUT
1f9eff07 568
94480b71
MJ
569
570#
571# Mini-report on what will be built.
572#
573
574PPRINT_INIT
575PPRINT_SET_INDENT(1)
576PPRINT_SET_TS(38)
577
2770ab16 578AS_ECHO
94480b71 579AS_ECHO("${PPRINT_COLOR_BLDBLU}LTTng-ust $PACKAGE_VERSION \"V_NAME\"$PPRINT_COLOR_RST")
2a5b1cfe 580AS_ECHO
649282a8 581
94480b71
MJ
582AS_ECHO("V_DESC")
583
2a5b1cfe 584AS_ECHO
94480b71
MJ
585PPRINT_SUBTITLE([System])
586
587PPRINT_PROP_STRING([Target architecture], $host_cpu)
588
589test "x$NO_UNALIGNED_ACCESS" != "x1" && value=1 || value=0
590PPRINT_PROP_BOOL([Efficient unaligned memory access], $value)
591
592AS_IF([test "x$UNSUPPORTED_ARCH" = "x1"],[
593 PPRINT_WARN([Your architecture ($host_cpu) is unsupported, using safe default of no unaligned access.])
594])
595
596AS_ECHO
597PPRINT_SUBTITLE([Features])
598PPRINT_SET_INDENT(1)
599
600test "x$with_sdt" = "xyes" && value=1 || value=0
601PPRINT_PROP_BOOL_CUSTOM([sdt.h integration], $value, [use --with-sdt])
602
603test "x$java_agent_jul" = xyes && value=1 || value=0
604PPRINT_PROP_BOOL_CUSTOM([Java agent (JUL support)], $value, [use --enable-java-agent-jul])
605
606test "x$java_agent_log4j" = xyes && value=1 || value=0
607PPRINT_PROP_BOOL_CUSTOM([Java agent (Log4j support)], $value, [use --enable-java-agent-log4j])
608
609test "x$jni_interface" = xyes && value=1 || value=0
610PPRINT_PROP_BOOL_CUSTOM([JNI interface (JNI)], $value, [use --enable-jni-interface])
611
612test "x$python_agent" = xyes && value=1 || value=0
613PPRINT_PROP_BOOL_CUSTOM([Python agent], $value, [use --enable-python-agent])
1f9eff07 614
3207efee
MJ
615test "x$have_perf_event" = "xyes" && value=1 || value=0
616PPRINT_PROP_BOOL_CUSTOM([Perf event integration], $value)
617
bfcda6ce
MD
618test "x$enable_numa" = xyes && value=1 || value=0
619PPRINT_PROP_BOOL([NUMA], $value)
620
2a5b1cfe 621AS_ECHO
94480b71 622PPRINT_SET_INDENT(0)
501f6777 623
08aa9a26
PP
624test "x$enable_examples" = xyes && value=1 || value=0
625PPRINT_PROP_BOOL([Build and install examples], $value, $PPRINT_COLOR_SUBTITLE)
626
94480b71
MJ
627# man pages build enabled/disabled
628m4_pushdef([build_man_pages_msg], [Build and install man pages])
501f6777 629
94480b71
MJ
630AS_IF([test "x$man_pages_opt" != "xno"], [
631 AS_IF([test "x$in_git_repo" = "xyes"], [
632 PPRINT_PROP_BOOL([build_man_pages_msg], 1, $PPRINT_COLOR_SUBTITLE)
633 ], [
634 AS_IF([test "x$have_asciidoc_xmlto" = "xyes"], [
635 PPRINT_PROP_BOOL([build_man_pages_msg], 1, $PPRINT_COLOR_SUBTITLE)
636 ], [
637 PPRINT_PROP_STRING([build_man_pages_msg],
638 [${PPRINT_COLOR_BLDGRN}yes (already built)],
639 $PPRINT_COLOR_SUBTITLE)
640 ])
641 ])
642], [
643 PPRINT_PROP_BOOL([build_man_pages_msg], 0, $PPRINT_COLOR_SUBTITLE)
644])
501f6777 645
94480b71 646m4_popdef([build_man_pages_msg])
1f9eff07 647
94480b71 648PPRINT_SET_INDENT(1)
c3e14096 649
94480b71
MJ
650report_bindir="`eval eval echo $bindir`"
651report_libdir="`eval eval echo $libdir`"
1f9eff07 652
94480b71 653# Print the bindir and libdir this `make install' will install into.
2a5b1cfe 654AS_ECHO
94480b71
MJ
655PPRINT_SUBTITLE([Install directories])
656PPRINT_PROP_STRING([Binaries], [$report_bindir])
657PPRINT_PROP_STRING([Libraries], [$report_libdir])
0ea8bd08 658
94480b71
MJ
659AS_ECHO
660PPRINT_SUBTITLE([System directories])
661
662PPRINT_PROP_STRING([lttng-sessiond rundir], [$lttng_system_rundir])
663
664PPRINT_SET_INDENT(0)
665
666AS_IF([test "x$warn_prebuilt_man_pages" = "xyes" ], [
667 AS_ECHO
668 PPRINT_WARN([Both asciidoc and xmlto are needed to build the LTTng-UST man pages.
1f9eff07 669
94480b71
MJ
670Note that the man pages are already built in this distribution tarball,
671therefore asciidoc and xmlto are only needed if you intend to modify
672their sources.
673
674Use --disable-man-pages to completely disable building and installing
675the man pages.])
676])
This page took 0.070649 seconds and 4 git commands to generate.