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