Fix: Don't override user variables within the build system
[lttng-ust.git] / configure.ac
CommitLineData
86adb855 1dnl -*- Autoconf -*-
b54f2130 2dnl Process this file with autoconf to produce a configure script.
1304f3df 3
16f9d99c 4dnl Version infos
58f107eb 5m4_define([V_MAJOR], [2])
59d82da5 6m4_define([V_MINOR], [10])
58f107eb 7m4_define([V_PATCH], [0])
e654ae79 8m4_define([V_EXTRA], [rc1])
58f107eb
PP
9m4_define([V_STRING], [V_MAJOR.V_MINOR.V_PATCH])
10m4_ifdef([V_EXTRA], [m4_append([V_STRING], [-V_EXTRA])])
59d82da5
MD
11m4_define([V_NAME], [[KeKriek]])
12m4_define([V_DESC], [[From Brasserie Dunham, a sour mashed golden wheat ale fermented with local sour cherries from Tougas orchards. Fresh sweet cherry notes with some tartness, lively carbonation with a dry finish.]])
58f107eb 13
093c3f9b
MJ
14AC_PREREQ(2.59)
15AC_INIT([lttng-ust], V_STRING, [mathieu dot desnoyers at efficios dot com], [], [https://lttng.org])
a334646a
MD
16
17# Following the numbering scheme proposed by libtool for the library version
18# http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
41a2a9aa 19# This is the library version of liblttng-ust.
a334646a
MD
20AC_SUBST([LTTNG_UST_LIBRARY_VERSION], [0:0:0])
21# note: remember to update tracepoint.h dlopen() to match this version
22# number. TODO: eventually automate by exporting the major number.
23
41a2a9aa
MD
24# This is the library version of liblttng-ust-ctl, used internally by
25# liblttng-ust, lttng-sessiond, and lttng-consumerd.
f45930b7 26AC_SUBST([LTTNG_UST_CTL_LIBRARY_VERSION], [3:0:1])
41a2a9aa 27
55355fa5 28AC_CONFIG_AUX_DIR([config])
9441df61
PMF
29AC_CANONICAL_TARGET
30AC_CANONICAL_HOST
093c3f9b 31AC_CONFIG_MACRO_DIR([m4])
a995492f 32AM_INIT_AUTOMAKE([1.9 foreign dist-bzip2 no-dist-gzip tar-ustar])
846154aa 33AM_MAINTAINER_MODE([enable])
50f3dba0 34m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
4318ae1b 35AC_CONFIG_SRCDIR([include/lttng/tracepoint.h])
4846fadc 36
f3c7428e
MJ
37AC_REQUIRE_AUX_FILE([tap-driver.sh])
38
4846fadc 39# Configuration options, which will be installed in the config.h
562c813a
MD
40AC_CONFIG_HEADERS([config.h include/lttng/ust-config.h])
41AH_TEMPLATE([LTTNG_UST_HAVE_EFFICIENT_UNALIGNED_ACCESS], [Use efficient unaligned access.])
02120ddf 42AH_TEMPLATE([LTTNG_UST_HAVE_SDT_INTEGRATION], [SystemTap integration via sdt.h])
d58d1454 43AH_TEMPLATE([LTTNG_UST_HAVE_PERF_EVENT], [Perf event integration via perf_event.h])
23c8854a 44
b54f2130 45dnl Substitute minor/major/patchlevel version numbers
58f107eb
PP
46AC_SUBST([MAJOR_VERSION], [V_MAJOR])
47AC_SUBST([MINOR_VERSION], [V_MINOR])
48AC_SUBST([PATCHLEVEL_VERSION], [V_PATCH])
161239e0 49
46a73fe4 50AC_PROG_SED
faebb418 51AC_PROG_GREP
85e09133 52AC_PROG_LN_S
4c70c05c 53AC_PROG_MKDIR_P
46a73fe4 54
faebb418 55# libtool link_all_deplibs fixup. See http://bugs.lttng.org/issues/321.
86adb855
PP
56AC_ARG_ENABLE([libtool-linkdep-fixup], [
57 AS_HELP_STRING([--disable-libtool-linkdep-fixup], [disable the libtool fixup for linking all dependent libraries (link_all_deplibs)])
58], [
59 libtool_fixup=$enableval
60], [
61 libtool_fixup=yes
62])
63
64AS_IF([test "x$libtool_fixup" = "xyes"], [
093c3f9b 65 libtool_m4="$srcdir/m4/libtool.m4"
86adb855
PP
66 libtool_flag_pattern=".*link_all_deplibs\s*,\s*\$1\s*)"
67 AC_MSG_CHECKING([for occurence(s) of link_all_deplibs = no in $libtool_m4])
68 libtool_flag_pattern_count=$(grep -c "$libtool_flag_pattern\s*=\s*no" $libtool_m4)
69
70 AS_IF([test $libtool_flag_pattern_count -ne 0], [
71 AC_MSG_RESULT([$libtool_flag_pattern_count])
72 AC_MSG_WARN([the detected libtool will not link all dependencies, forcing link_all_deplibs = unknown])
73 sed -i "s/\($libtool_flag_pattern\)\s*=\s*no/\1=unknown/g" $libtool_m4
74 ], [
75 AC_MSG_RESULT([none])
76 ])
77])
faebb418 78
824a00a7
MD
79AM_CONDITIONAL([NO_SHARED], [test "x$enable_shared" = "xno"])
80
1304f3df
PMF
81# Checks for programs.
82AC_PROG_CC
6b79f035 83AC_PROG_CXX
acb9c126
SB
84AC_CHECK_PROG([HAVE_CMAKE], [cmake], ["yes"])
85AM_CONDITIONAL([HAVE_CMAKE], [test "x$HAVE_CMAKE" = "xyes"])
1304f3df 86AC_PROG_MAKE_SET
fa1c6efe 87LT_INIT
1304f3df 88
340f7763
SM
89# rw_PROG_CXX_WORKS
90# Check whether the C++ compiler works.
86adb855
PP
91AC_CACHE_CHECK([whether the C++ compiler works], [rw_cv_prog_cxx_works], [
92 AC_LANG_PUSH([C++])
93
94 AC_LINK_IFELSE([AC_LANG_PROGRAM([], [])], [
95 check_cxx_designated_initializers=yes
96 ], [
97 rw_cv_prog_cxx_works=no
98 ])
99
100 AS_IF([test "x$check_cxx_designated_initializers" = "xyes"], [
101 AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
102 struct foo { int a; int b; };
103 void fct(void)
104 {
105 struct foo f = { .a = 0, .b = 1 };
106 }
107 ]])], [
108 rw_cv_prog_cxx_works=yes
109 ], [
110 rw_cv_prog_cxx_works=no
0e7d861a 111 ])
86adb855
PP
112 ])
113
114 AC_LANG_POP([C++])
115])
340f7763
SM
116
117AM_CONDITIONAL([CXX_WORKS], [test "x$rw_cv_prog_cxx_works" = "xyes"])
118
f1d4b810
CB
119# Check if the compiler support weak symbols
120AX_SYS_WEAK_ALIAS
121
0e7d861a
PP
122AS_IF([test "x${ax_cv_sys_weak_alias}" = "xno"], [
123 AC_MSG_ERROR([Your platform doesn't support weak symbols.])
124])
f1d4b810 125
b54f2130 126# Checks for libraries.
86adb855 127AC_CHECK_LIB([dl], [dlopen], [
c6c454ab 128 have_libdl=yes
42330adc 129 libdl_name=dl
86adb855 130], [
c6c454ab 131 #libdl not found, check for dlopen in libc.
86adb855 132 AC_CHECK_LIB([c], [dlopen], [
c6c454ab 133 have_libc_dl=yes
42330adc 134 libdl_name=c
86adb855 135 ], [
c6c454ab
MD
136 AC_MSG_ERROR([Cannot find dlopen in libdl nor libc. Use [LDFLAGS]=-Ldir to specify their location.])
137 ])
138])
86adb855 139
42330adc
JR
140# Check if libdl has dlmopen support.
141AH_TEMPLATE([HAVE_DLMOPEN], ["Define to 1 if dlmopen is available."])
142AC_CHECK_LIB([$libdl_name], [dlmopen],
143 [AC_DEFINE([HAVE_DLMOPEN], [1])]
144)
145
c6c454ab
MD
146AM_CONDITIONAL([LTTNG_UST_BUILD_WITH_LIBDL], [test "x$have_libdl" = "xyes"])
147AM_CONDITIONAL([LTTNG_UST_BUILD_WITH_LIBC_DL], [test "x$have_libc_dl" = "xyes"])
148
e26c8207 149AC_CHECK_LIB([pthread], [pthread_create])
01f0e40c
RB
150AC_CHECK_LIB([pthread], [pthread_setname_np],
151 AC_DEFINE([HAVE_PTHREAD_SETNAME_NP], [1], [Define to 1 if pthread_setname_np is available.]),
152 AC_CHECK_LIB([pthread], [pthread_set_name_np],
153 AC_DEFINE([HAVE_PTHREAD_SET_NAME_NP], [1], [Define to 1 if pthread_set_name_np is available.]),
154 AC_MSG_RESULT([pthread setname/set_name not found.])))
1304f3df 155
f9ff7aa4
RN
156# Check for dlfcn.h
157AC_CHECK_HEADER([dlfcn.h])
86adb855
PP
158AS_IF([test "x${ac_cv_header_dlfcn_h}" = "xyes"], [
159 AC_CHECK_DECLS([RTLD_DI_LINKMAP], [], [], [
160 #define _GNU_SOURCE /* Required on Linux to get GNU extensions */
161 #include <dlfcn.h>
162 ])
163], [
164 ac_cv_have_decl_RTLD_DI_LINKMAP="no"
165])
166
f9ff7aa4
RN
167AM_CONDITIONAL([HAVE_DLINFO], [test "x${ac_cv_have_decl_RTLD_DI_LINKMAP}" = "xyes"])
168
1304f3df 169# Checks for header files.
b54f2130 170dnl AC_CHECK_HEADERS([fcntl.h stdint.h stdlib.h string.h sys/socket.h sys/time.h unistd.h])
1304f3df
PMF
171
172# Checks for typedefs, structures, and compiler characteristics.
173AC_C_INLINE
b54f2130
PP
174dnl AC_TYPE_INT16_T
175dnl AC_TYPE_INT32_T
176dnl AC_TYPE_INT64_T
177dnl AC_TYPE_INT8_T
178dnl AC_TYPE_PID_T
179dnl AC_TYPE_SIZE_T
180dnl AC_TYPE_SSIZE_T
181dnl AC_TYPE_UINT16_T
182dnl AC_TYPE_UINT32_T
183dnl AC_TYPE_UINT64_T
184dnl AC_TYPE_UINT8_T
185dnl AC_CHECK_TYPES([ptrdiff_t])
1304f3df
PMF
186
187# Checks for library functions.
188AC_FUNC_MALLOC
e9d165be 189AC_CHECK_FUNCS([gettimeofday munmap socket strerror strtol sched_getcpu sysconf])
1304f3df 190
8624c549
PMF
191# URCU
192
193# urcu - check if we just find the headers it out of the box.
135987a5 194AC_CHECK_HEADERS([urcu-bp.h], [], [AC_MSG_ERROR([Cannot find [URCU] headers (urcu-bp.h). Use [CPPFLAGS]=-Idir to specify their location.
cacb7fbe 195This error can also occur when the liburcu package's configure script has not been run.])])
bf956ec0
MD
196
197# urcu-cds - check that URCU Concurrent Data Structure lib is available to compilation
198# Part of Userspace RCU library 0.7.2 or better.
199AC_CHECK_LIB([urcu-cds], [_cds_lfht_new], [], [AC_MSG_ERROR([Cannot find
200liburcu-cds lib, part of Userspace RCU 0.7 or better. Use [LDFLAGS]=-Ldir to specify its location.])])
8624c549 201
b5a3dfa5 202AC_MSG_CHECKING([caa_likely()])
31b07350 203AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
86adb855
PP
204 #include <urcu/compiler.h>
205 void fct(void)
206 {
207 if (caa_likely(1)) {
208 }
b5a3dfa5 209 }
86adb855 210]])], [
b5a3dfa5 211 AC_MSG_RESULT([yes])
86adb855 212], [
b5a3dfa5
MD
213 AC_MSG_RESULT([no])
214 AC_MSG_ERROR([Please upgrade your version of liburcu to 0.6.6 or better])
727bb6cb 215])
b5a3dfa5 216
8624c549 217# urcu - check that URCU lib is available to compilation
cfa0520d 218AC_CHECK_LIB([urcu-bp], [synchronize_rcu_bp], [], [AC_MSG_ERROR([Cannot find liburcu-bp lib. Use [LDFLAGS]=-Ldir to specify its location.])])
e3073410 219
a6830b14
MD
220# urcu - check that URCU lib is at least version 0.6
221AC_CHECK_LIB([urcu-bp], [call_rcu_bp], [], [AC_MSG_ERROR([liburcu 0.6 or newer is needed, please update your version or use [LDFLAGS]=-Ldir to specify the right location.])])
e3073410 222
d58d1454
MD
223# optional linux/perf_event.h
224AC_CHECK_HEADERS([linux/perf_event.h], [have_perf_event=yes], [])
d58d1454 225
723f78e3
MD
226# Perf event counters are supported on all architectures supported by
227# perf, using the read system call as fallback.
228AM_CONDITIONAL([HAVE_PERF_EVENT], [test "x$have_perf_event" = "xyes"])
1113f842 229
723f78e3 230AS_IF([test "x$have_perf_event" = "xyes"], [
0e7d861a
PP
231 AC_DEFINE([LTTNG_UST_HAVE_PERF_EVENT], [1])
232])
d58d1454 233
dca6e79f 234AC_MSG_CHECKING([host system alignment requirements])
0516f3b3
PP
235AS_CASE([$host_cpu],
236 [i[[3456]]86], [],
237 [x86_64], [],
238 [amd64], [],
239 [powerpc], [],
240 [ppc64], [],
241 [ppc64le], [],
242 [powerpc64], [],
243 [powerpc64le], [],
244 [s390], [NO_UNALIGNED_ACCESS=1],
245 [s390x], [NO_UNALIGNED_ACCESS=1],
246 [arm*], [NO_UNALIGNED_ACCESS=1],
b5eac5d4 247 [aarch64*], [NO_UNALIGNED_ACCESS=1],
0516f3b3
PP
248 [mips*], [NO_UNALIGNED_ACCESS=1],
249 [tile*], [NO_UNALIGNED_ACCESS=1],
250 [
0ea8bd08
MJ
251 UNSUPPORTED_ARCH=1
252 NO_UNALIGNED_ACCESS=1
0516f3b3 253 ])
f039c6b0 254AC_MSG_RESULT([$host_cpu])
ed452f03 255
0e7d861a
PP
256AS_IF([test "x$NO_UNALIGNED_ACCESS" = "x"], [
257 AC_DEFINE([LTTNG_UST_HAVE_EFFICIENT_UNALIGNED_ACCESS], [1])
258])
2699970a 259
2b6f8df9 260# Check for JNI header files if requested
86adb855
PP
261AC_ARG_ENABLE([jni-interface], [
262 AS_HELP_STRING([--enable-jni-interface], [build JNI interface between C and Java. Needs Java include files [default=no]])
263], [
264 jni_interface=$enableval
265], [
266 jni_interface=no
267])
2b6f8df9 268
b2263155 269AM_CONDITIONAL([BUILD_JNI_INTERFACE], [test "x$jni_interface" = "xyes"])
2b6f8df9 270
501f6777 271
86adb855
PP
272AC_ARG_ENABLE([java-agent-jul], [
273 AS_HELP_STRING([--enable-java-agent-jul], [build the LTTng UST Java agent with JUL support [default=no]])
274], [
275 java_agent_jul=$enableval
276], [
277 java_agent_jul=no
278])
501f6777 279
86adb855
PP
280AC_ARG_ENABLE([java-agent-log4j], [
281 AS_HELP_STRING([--enable-java-agent-log4j], [build the LTTng UST Java agent with Log4j support [default=no]])
282], [
283 java_agent_log4j=$enableval
284], [
285 java_agent_log4j=no
286])
501f6777 287
86adb855
PP
288AC_ARG_ENABLE([java-agent-all], [
289 AS_HELP_STRING([--enable-java-agent-all], [build the LTTng UST Java agent with all supported backends [default=no]])
290], [
291 java_agent_jul=$enableval
292 java_agent_log4j=$enableval
293], [:])
501f6777
CB
294
295AM_CONDITIONAL([BUILD_JAVA_AGENT], [test "x$java_agent_jul" = "xyes" || test "x$java_agent_log4j" = "xyes"])
296AM_CONDITIONAL([BUILD_JAVA_AGENT_WITH_JUL], [test "x$java_agent_jul" = "xyes"])
297AM_CONDITIONAL([BUILD_JAVA_AGENT_WITH_LOG4J], [test "x$java_agent_log4j" = "xyes"])
298
0e7d861a
PP
299AS_IF([test "x$jni_interface" = "xyes" || test "x$java_agent_jul" = "xyes" || test "x$java_agent_log4j" = "xyes"], [
300 AX_JAVA_OPTIONS
301 AX_PROG_JAVAC
302 AX_PROG_JAVA
303 AX_PROG_JAR
501f6777 304
0e7d861a
PP
305 AX_JNI_INCLUDE_DIR
306 for JNI_INCLUDE_DIR in $JNI_INCLUDE_DIRS
307 do
e1c62734 308 JNI_CPPFLAGS="$JNI_CPPFLAGS -I$JNI_INCLUDE_DIR"
0e7d861a 309 done
501f6777 310
e1c62734
MJ
311 saved_CPPFLAGS="$CPPFLAGS"
312 CPPFLAGS="$CPPFLAGS $JNI_CPPFLAGS"
0e7d861a 313 AX_PROG_JAVAH
e1c62734 314 CPPFLAGS="$saved_CPPFLAGS"
0e7d861a 315])
501f6777 316
0e7d861a
PP
317AS_IF([test "x$java_agent_log4j" = "xyes"], [
318 AX_CHECK_CLASSPATH
0e7d861a 319 AX_CHECK_CLASS([org.apache.log4j.Logger])
0e7d861a
PP
320 AS_IF([test "x$ac_cv_class_org_apache_log4j_Logger" = "xno"], [
321 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"])
322 ])
323])
501f6777 324
c3e14096 325# Option to build the python agent
86adb855
PP
326AC_ARG_ENABLE([python-agent], [
327 AS_HELP_STRING([--enable-python-agent], [build the LTTng UST Python agent [default=no]])
328], [
329 python_agent=$enableval
330], [:])
c3e14096 331AM_CONDITIONAL([BUILD_PYTHON_AGENT], [test "x$python_agent" = "xyes"])
0e7d861a 332AS_IF([test "x$python_agent" = "xyes"], [
55c9e5ae 333 AM_PATH_PYTHON([2.7])
0e7d861a 334])
c3e14096 335
4846fadc 336# sdt.h integration
86adb855
PP
337AC_ARG_WITH([sdt], [
338 AS_HELP_STRING([--with-sdt], [provide SystemTap integration via sdt.h [default=no]])
339], [
340 with_sdt=$withval
341], [
342 with_sdt="no"
343])
4846fadc 344
86adb855 345AS_IF([test "x$with_sdt" = "xyes"], [
491f30fe
MD
346 AC_MSG_CHECKING([STAP_PROBEV()])
347 AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
86adb855
PP
348 #define SDT_USE_VARIADIC
349 #include <sys/sdt.h>
350 void fct(void)
351 {
352 STAP_PROBEV(provider,name,1,2,3,4,5,6,7,8,9,10);
353 }
354 ]])], [
491f30fe 355 AC_MSG_RESULT([yes])
562c813a 356 AC_DEFINE([LTTNG_UST_HAVE_SDT_INTEGRATION], [1])
86adb855 357 ], [
491f30fe 358 AC_MSG_RESULT([no])
135987a5 359 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
360 ])
361])
362
ccb19569 363AC_MSG_CHECKING([whether shared libraries are enabled])
86adb855
PP
364AS_IF([test "x$enable_shared" = "xyes"], [
365 AC_MSG_RESULT([yes])
366], [
367 AC_MSG_RESULT([no])
368 AC_MSG_ERROR([LTTng-UST requires shared libraries to be enabled])
369])
ccb19569 370
86adb855
PP
371AC_ARG_WITH([lttng-system-rundir], [
372 AS_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".]),
373], [
374 lttng_system_rundir="$withval"
375], [
376 lttng_system_rundir="/var/run/lttng"
377])
751d4e91 378AC_DEFINE_UNQUOTED([LTTNG_SYSTEM_RUNDIR], ["$lttng_system_rundir"],
86adb855 379 [LTTng system runtime directory])
751d4e91 380
86adb855 381AC_CHECK_PROG([BUILD_GEN_TP_EXAMPLES], [python], ["yes"])
0d8ba43d 382AM_CONDITIONAL([BUILD_GEN_TP_EXAMPLES], [test "x$BUILD_GEN_TP_EXAMPLES" = "xyes"])
2b90f1d3 383
4ddbd0b7
PP
384# Set $IN_GIT_REPO if we're in the Git repository; the `bootstrap` file
385# is not distributed in tarballs.
386AS_IF([test -f "$srcdir/bootstrap"], [in_git_repo=yes], [in_git_repo=no])
387AM_CONDITIONAL([IN_GIT_REPO], [test "x$in_git_repo" = "xyes"])
388
389# Enable building man pages (user's intention).
390AC_ARG_ENABLE(
391 man-pages,
392 AS_HELP_STRING(
393 [--disable-man-pages],
394 [Do not build and install man pages (already built in a distributed tarball)]
395 ),
396 [man_pages_opt=$enableval],
397 [man_pages_opt=yes]
398)
399
400# Check for asciidoc and xmlto if we enabled building the man pages.
401have_asciidoc_xmlto=no
402
403AS_IF([test "x$man_pages_opt" = "xyes"], [
404 AC_PATH_PROG([ASCIIDOC], [asciidoc], [no])
405 AC_PATH_PROG([XMLTO], [xmlto], [no])
406
407 AS_IF([test "x$ASCIIDOC" = "xno" || test "x$XMLTO" = "xno"], [
408 AS_IF([test "x$in_git_repo" = "xyes"], [
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([
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 AC_MSG_WARN([
423Both asciidoc and xmlto are needed to build the LTTng-UST man pages.
424Note that the man pages are already built in this distribution tarball,
425so asciidoc and xmlto are only needed if you intend to modify their
426sources. Use --disable-man-pages to completely disable building
427and installing the man pages.
428 ])
429 ])
430 ], [
431 have_asciidoc_xmlto=yes
432 ])
433])
434
435# Export man page build condition: build the man pages if the user
436# asked for it, and if the tools are available.
437AM_CONDITIONAL([MAN_PAGES_OPT], [test "x$man_pages_opt" != "xno"])
438AM_CONDITIONAL([HAVE_ASCIIDOC_XMLTO], [test "x$have_asciidoc_xmlto" = "xyes"])
439
2b4444ce
PP
440# Default values
441AC_DEFUN([_AC_DEFINE_AND_SUBST], [
442 AC_DEFINE_UNQUOTED([CONFIG_$1], [$2], [$1])
443 $1="$2"
444 AC_SUBST([$1])
445])
446
447_AC_DEFINE_AND_SUBST([LTTNG_UST_DEFAULT_CONSTRUCTOR_TIMEOUT_MS], [3000])
6f97f9c2
MD
448# By default, do not retry on buffer full condition.
449_AC_DEFINE_AND_SUBST([LTTNG_UST_DEFAULT_BLOCKING_RETRY_TIMEOUT_MS], [0])
2b4444ce 450
e1c62734
MJ
451AM_CFLAGS="-Wall"
452AC_SUBST(AM_CFLAGS)
453AC_SUBST(JNI_CPPFLAGS)
454
55355fa5
JB
455AC_CONFIG_FILES([
456 Makefile
7ccf75d3
MD
457 doc/Makefile
458 doc/examples/Makefile
4ddbd0b7 459 doc/man/Makefile
69400ac4 460 include/Makefile
b728d87e 461 include/lttng/ust-version.h
69400ac4 462 snprintf/Makefile
4931a13e 463 libringbuffer/Makefile
69400ac4
MD
464 liblttng-ust-comm/Makefile
465 liblttng-ust/Makefile
466 liblttng-ust-ctl/Makefile
467 liblttng-ust-fork/Makefile
b13d93c2 468 liblttng-ust-dl/Makefile
95e6d268 469 liblttng-ust-fd/Makefile
69400ac4 470 liblttng-ust-java/Makefile
501f6777
CB
471 liblttng-ust-java-agent/Makefile
472 liblttng-ust-java-agent/java/Makefile
8e6b6350 473 liblttng-ust-java-agent/java/lttng-ust-agent-all/Makefile
8e57e02f
AM
474 liblttng-ust-java-agent/java/lttng-ust-agent-common/Makefile
475 liblttng-ust-java-agent/java/lttng-ust-agent-jul/Makefile
476 liblttng-ust-java-agent/java/lttng-ust-agent-log4j/Makefile
501f6777 477 liblttng-ust-java-agent/jni/Makefile
8ab5c06b 478 liblttng-ust-java-agent/jni/common/Makefile
501f6777
CB
479 liblttng-ust-java-agent/jni/jul/Makefile
480 liblttng-ust-java-agent/jni/log4j/Makefile
476037d9 481 liblttng-ust-libc-wrapper/Makefile
70d654f2 482 liblttng-ust-cyg-profile/Makefile
c3e14096 483 liblttng-ust-python-agent/Makefile
5b6ff569
PP
484 python-lttngust/Makefile
485 python-lttngust/setup.py
486 python-lttngust/lttngust/__init__.py
b25c5b37 487 tools/Makefile
6dd969b5 488 tests/Makefile
c785c634 489 tests/ctf-types/Makefile
6dd969b5 490 tests/hello/Makefile
6b79f035 491 tests/hello.cxx/Makefile
90c09854 492 tests/same_line_tracepoint/Makefile
d23b20e9 493 tests/snprintf/Makefile
22609c7a 494 tests/ust-elf/Makefile
a44af49d 495 tests/benchmark/Makefile
9a4b88ff 496 tests/utils/Makefile
53569322 497 tests/test-app-ctx/Makefile
5a673446 498 tests/gcc-weak-hidden/Makefile
74a6d87b 499 lttng-ust.pc
55355fa5 500])
1f9eff07 501
bf261856
JR
502# Create link for python agent for the VPATH guru.
503AC_CONFIG_LINKS([
5b6ff569
PP
504 python-lttngust/lttngust/agent.py:python-lttngust/lttngust/agent.py
505 python-lttngust/lttngust/cmd.py:python-lttngust/lttngust/cmd.py
506 python-lttngust/lttngust/debug.py:python-lttngust/lttngust/debug.py
507 python-lttngust/lttngust/loghandler.py:python-lttngust/lttngust/loghandler.py
bf261856
JR
508])
509
1304f3df 510AC_OUTPUT
1f9eff07 511
2770ab16 512AS_ECHO
16f9d99c 513AS_ECHO(["m4_bpatsubst(V_NAME, ["], [\\"])"])
2a5b1cfe 514AS_ECHO
16f9d99c 515AS_ECHO(["m4_bpatsubst(V_DESC, ["], [\\"])"])
649282a8 516
1f9eff07 517# Report on the configuration options
2a5b1cfe 518AS_ECHO
79057ae6 519AS_ECHO(["LTTng-UST will be built with the following options:"])
1f9eff07 520
2a5b1cfe 521AS_ECHO
501f6777 522
79057ae6 523AS_ECHO_N(["Java agent (JUL support): "])
380a81f4 524AS_IF([test "x$java_agent_jul" = "xyes"], [AS_ECHO(["Enabled"])], [AS_ECHO(["Disabled (Use --enable-java-agent-jul)"])])
501f6777 525
79057ae6 526AS_ECHO_N(["Java agent (Log4j support): "])
380a81f4 527AS_IF([test "x$java_agent_log4j" = "xyes"], [AS_ECHO(["Enabled"])], [AS_ECHO(["Disabled (Use --enable-java-agent-log4j)"])])
501f6777 528
79057ae6 529AS_ECHO_N(["JNI interface (JNI): "])
380a81f4 530AS_IF([test "x$jni_interface" = "xyes"], [AS_ECHO(["Enabled"])], [AS_ECHO(["Disabled (Use --enable-jni-interface)"])])
1f9eff07 531
79057ae6 532AS_ECHO_N(["Python ($PYTHON) agent: "])
380a81f4 533AS_IF([test "x$python_agent" = "xyes"], [AS_ECHO(["Enabled"])], [AS_ECHO(["Disabled (Use --enable-python-agent)"])])
c3e14096 534
79057ae6
PP
535AS_ECHO_N(["sdt.h integration: "])
536AS_IF([test "x$with_sdt" = "xyes"], [AS_ECHO(["Enabled"])], [AS_ECHO(["Disabled"])])
1f9eff07 537
79057ae6
PP
538AS_ECHO(["Architecture: $host_cpu"])
539AS_ECHO_N(["Efficient unaligned memory access: "])
540AS_IF([test "x$NO_UNALIGNED_ACCESS" != "x1"], [AS_ECHO(["yes"])], [AS_IF([test "x$UNSUPPORTED_ARCH" != "x1"], [AS_ECHO(["no"])], [AS_ECHO(["unknown"])])])
0ea8bd08 541AS_IF([test "x$UNSUPPORTED_ARCH" = "x1"], [AC_MSG_WARN([Your architecture ($host_cpu) is unsupported, using safe default of no unaligned access])])
2a5b1cfe 542AS_ECHO
0ea8bd08 543
79057ae6 544AS_ECHO(["Type 'make' to compile."])
1f9eff07 545
This page took 0.061732 seconds and 4 git commands to generate.