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