Add probe provider unregister function
[lttng-ust.git] / configure.ac
CommitLineData
16f9d99c 1dnl Version infos
58f107eb 2m4_define([V_MAJOR], [2])
59d82da5 3m4_define([V_MINOR], [10])
58f107eb 4m4_define([V_PATCH], [0])
e654ae79 5m4_define([V_EXTRA], [rc1])
59d82da5
MD
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.]])
58f107eb 8
94480b71
MJ
9m4_define([V_STRING], [V_MAJOR.V_MINOR.V_PATCH])
10m4_ifdef([V_EXTRA], [m4_append([V_STRING], [-V_EXTRA])])
11
093c3f9b
MJ
12AC_PREREQ(2.59)
13AC_INIT([lttng-ust], V_STRING, [mathieu dot desnoyers at efficios dot com], [], [https://lttng.org])
a334646a 14
94480b71
MJ
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
a334646a
MD
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
41a2a9aa 22# This is the library version of liblttng-ust.
23e08412
FD
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])
a334646a
MD
28# note: remember to update tracepoint.h dlopen() to match this version
29# number. TODO: eventually automate by exporting the major number.
30
41a2a9aa
MD
31# This is the library version of liblttng-ust-ctl, used internally by
32# liblttng-ust, lttng-sessiond, and lttng-consumerd.
b2c5f61a 33AC_SUBST([LTTNG_UST_CTL_LIBRARY_VERSION], [4:0:0])
41a2a9aa 34
94480b71 35AC_CONFIG_HEADERS([config.h include/lttng/ust-config.h])
55355fa5 36AC_CONFIG_AUX_DIR([config])
94480b71
MJ
37AC_CONFIG_MACRO_DIR([m4])
38AC_CONFIG_SRCDIR([include/lttng/tracepoint.h])
39
9441df61
PMF
40AC_CANONICAL_TARGET
41AC_CANONICAL_HOST
94480b71 42
a995492f 43AM_INIT_AUTOMAKE([1.9 foreign dist-bzip2 no-dist-gzip tar-ustar])
846154aa 44AM_MAINTAINER_MODE([enable])
94480b71
MJ
45
46# Enable silent rules if available (Introduced in AM 1.11)
50f3dba0 47m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
4846fadc 48
f3c7428e
MJ
49AC_REQUIRE_AUX_FILE([tap-driver.sh])
50
94480b71
MJ
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"])
23c8854a 59
94480b71
MJ
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])
161239e0 66
94480b71 67# Checks for programs.
46a73fe4 68AC_PROG_SED
faebb418 69AC_PROG_GREP
85e09133 70AC_PROG_LN_S
4c70c05c 71AC_PROG_MKDIR_P
94480b71
MJ
72AC_PROG_MAKE_SET
73AC_CHECK_PROG([HAVE_CMAKE], [cmake], ["yes"])
74AM_CONDITIONAL([HAVE_CMAKE], [test "x$HAVE_CMAKE" = "xyes"])
46a73fe4 75
faebb418 76# libtool link_all_deplibs fixup. See http://bugs.lttng.org/issues/321.
86adb855 77AC_ARG_ENABLE([libtool-linkdep-fixup], [
94480b71 78AS_HELP_STRING([--disable-libtool-linkdep-fixup], [disable the libtool fixup for linking all dependent libraries (link_all_deplibs)])
86adb855
PP
79], [
80 libtool_fixup=$enableval
81], [
82 libtool_fixup=yes
83])
84
85AS_IF([test "x$libtool_fixup" = "xyes"], [
093c3f9b 86 libtool_m4="$srcdir/m4/libtool.m4"
86adb855
PP
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])
94480b71 94 $SED -i "s/\($libtool_flag_pattern\)\s*=\s*no/\1=unknown/g" $libtool_m4
86adb855
PP
95 ], [
96 AC_MSG_RESULT([none])
97 ])
98])
94480b71 99LT_INIT([disable-static])
faebb418 100
94480b71
MJ
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])
86adb855 108
94480b71
MJ
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])])
86adb855 131
94480b71
MJ
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 \
86adb855 159])
340f7763 160
94480b71
MJ
161# AC_FUNC_MALLOC causes problems when cross-compiling.
162#AC_FUNC_MALLOC
f1d4b810 163
94480b71
MJ
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 \
0e7d861a 176])
f1d4b810 177
c95c332a
MJ
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
94480b71
MJ
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
b54f2130 207# Checks for libraries.
86adb855 208AC_CHECK_LIB([dl], [dlopen], [
c6c454ab 209 have_libdl=yes
42330adc 210 libdl_name=dl
86adb855 211], [
c6c454ab 212 #libdl not found, check for dlopen in libc.
86adb855 213 AC_CHECK_LIB([c], [dlopen], [
c6c454ab 214 have_libc_dl=yes
42330adc 215 libdl_name=c
86adb855 216 ], [
c6c454ab
MD
217 AC_MSG_ERROR([Cannot find dlopen in libdl nor libc. Use [LDFLAGS]=-Ldir to specify their location.])
218 ])
219])
86adb855 220
42330adc
JR
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
c6c454ab
MD
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
e26c8207 230AC_CHECK_LIB([pthread], [pthread_create])
01f0e40c
RB
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.])))
1304f3df 236
f9ff7aa4
RN
237# Check for dlfcn.h
238AC_CHECK_HEADER([dlfcn.h])
86adb855
PP
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
f9ff7aa4
RN
248AM_CONDITIONAL([HAVE_DLINFO], [test "x${ac_cv_have_decl_RTLD_DI_LINKMAP}" = "xyes"])
249
8624c549
PMF
250# URCU
251
252# urcu - check if we just find the headers it out of the box.
135987a5 253AC_CHECK_HEADERS([urcu-bp.h], [], [AC_MSG_ERROR([Cannot find [URCU] headers (urcu-bp.h). Use [CPPFLAGS]=-Idir to specify their location.
cacb7fbe 254This error can also occur when the liburcu package's configure script has not been run.])])
bf956ec0
MD
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.])])
8624c549 260
16adecf1
MD
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
8624c549 276# urcu - check that URCU lib is available to compilation
cfa0520d 277AC_CHECK_LIB([urcu-bp], [synchronize_rcu_bp], [], [AC_MSG_ERROR([Cannot find liburcu-bp lib. Use [LDFLAGS]=-Ldir to specify its location.])])
e3073410 278
a6830b14
MD
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.])])
4b68c31f 281
bfcda6ce 282# numa.h integration
c95c332a
MJ
283AS_IF([test "x$NO_NUMA" = "x1"],[
284 AS_IF([test "x$enable_numa" = "x" ], [enable_numa=no])
285])
286
bfcda6ce
MD
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
126bf5f4
MD
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.])])
bfcda6ce
MD
299 have_libnuma=yes
300])
301AM_CONDITIONAL([HAVE_LIBNUMA], [test "x$have_libnuma" = "xyes"])
e3073410 302
d58d1454
MD
303# optional linux/perf_event.h
304AC_CHECK_HEADERS([linux/perf_event.h], [have_perf_event=yes], [])
d58d1454 305
723f78e3
MD
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"])
1113f842 309
723f78e3 310AS_IF([test "x$have_perf_event" = "xyes"], [
0e7d861a
PP
311 AC_DEFINE([LTTNG_UST_HAVE_PERF_EVENT], [1])
312])
d58d1454 313
0e7d861a
PP
314AS_IF([test "x$NO_UNALIGNED_ACCESS" = "x"], [
315 AC_DEFINE([LTTNG_UST_HAVE_EFFICIENT_UNALIGNED_ACCESS], [1])
316])
2699970a 317
2b6f8df9 318# Check for JNI header files if requested
86adb855 319AC_ARG_ENABLE([jni-interface], [
94480b71 320AS_HELP_STRING([--enable-jni-interface], [build JNI interface between C and Java. Needs Java include files [default=no]])
86adb855
PP
321], [
322 jni_interface=$enableval
323], [
324 jni_interface=no
325])
2b6f8df9 326
b2263155 327AM_CONDITIONAL([BUILD_JNI_INTERFACE], [test "x$jni_interface" = "xyes"])
2b6f8df9 328
501f6777 329
86adb855 330AC_ARG_ENABLE([java-agent-jul], [
94480b71 331AS_HELP_STRING([--enable-java-agent-jul], [build the LTTng UST Java agent with JUL support [default=no]])
86adb855
PP
332], [
333 java_agent_jul=$enableval
334], [
335 java_agent_jul=no
336])
501f6777 337
86adb855 338AC_ARG_ENABLE([java-agent-log4j], [
94480b71 339AS_HELP_STRING([--enable-java-agent-log4j], [build the LTTng UST Java agent with Log4j support [default=no]])
86adb855
PP
340], [
341 java_agent_log4j=$enableval
342], [
343 java_agent_log4j=no
344])
501f6777 345
86adb855 346AC_ARG_ENABLE([java-agent-all], [
94480b71 347AS_HELP_STRING([--enable-java-agent-all], [build the LTTng UST Java agent with all supported backends [default=no]])
86adb855
PP
348], [
349 java_agent_jul=$enableval
350 java_agent_log4j=$enableval
351], [:])
501f6777
CB
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
0e7d861a
PP
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
501f6777 362
0e7d861a
PP
363 AX_JNI_INCLUDE_DIR
364 for JNI_INCLUDE_DIR in $JNI_INCLUDE_DIRS
365 do
e1c62734 366 JNI_CPPFLAGS="$JNI_CPPFLAGS -I$JNI_INCLUDE_DIR"
0e7d861a 367 done
501f6777 368
e1c62734
MJ
369 saved_CPPFLAGS="$CPPFLAGS"
370 CPPFLAGS="$CPPFLAGS $JNI_CPPFLAGS"
0e7d861a 371 AX_PROG_JAVAH
e1c62734 372 CPPFLAGS="$saved_CPPFLAGS"
0e7d861a 373])
501f6777 374
0e7d861a
PP
375AS_IF([test "x$java_agent_log4j" = "xyes"], [
376 AX_CHECK_CLASSPATH
0e7d861a 377 AX_CHECK_CLASS([org.apache.log4j.Logger])
0e7d861a
PP
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])
501f6777 382
c3e14096 383# Option to build the python agent
86adb855 384AC_ARG_ENABLE([python-agent], [
94480b71 385AS_HELP_STRING([--enable-python-agent], [build the LTTng UST Python agent [default=no]])
86adb855
PP
386], [
387 python_agent=$enableval
388], [:])
c3e14096 389AM_CONDITIONAL([BUILD_PYTHON_AGENT], [test "x$python_agent" = "xyes"])
0e7d861a 390AS_IF([test "x$python_agent" = "xyes"], [
55c9e5ae 391 AM_PATH_PYTHON([2.7])
0e7d861a 392])
c3e14096 393
4846fadc 394# sdt.h integration
86adb855 395AC_ARG_WITH([sdt], [
94480b71 396AS_HELP_STRING([--with-sdt], [provide SystemTap integration via sdt.h [default=no]])
86adb855
PP
397], [
398 with_sdt=$withval
399], [
400 with_sdt="no"
401])
4846fadc 402
86adb855 403AS_IF([test "x$with_sdt" = "xyes"], [
491f30fe
MD
404 AC_MSG_CHECKING([STAP_PROBEV()])
405 AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
86adb855
PP
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 ]])], [
491f30fe 413 AC_MSG_RESULT([yes])
562c813a 414 AC_DEFINE([LTTNG_UST_HAVE_SDT_INTEGRATION], [1])
86adb855 415 ], [
491f30fe 416 AC_MSG_RESULT([no])
135987a5 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])
4846fadc
AM
418 ])
419])
420
86adb855 421AC_ARG_WITH([lttng-system-rundir], [
94480b71 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".]),
86adb855
PP
423], [
424 lttng_system_rundir="$withval"
425], [
426 lttng_system_rundir="/var/run/lttng"
427])
751d4e91 428AC_DEFINE_UNQUOTED([LTTNG_SYSTEM_RUNDIR], ["$lttng_system_rundir"],
86adb855 429 [LTTng system runtime directory])
751d4e91 430
86adb855 431AC_CHECK_PROG([BUILD_GEN_TP_EXAMPLES], [python], ["yes"])
0d8ba43d 432AM_CONDITIONAL([BUILD_GEN_TP_EXAMPLES], [test "x$BUILD_GEN_TP_EXAMPLES" = "xyes"])
2b90f1d3 433
08aa9a26
PP
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
4ddbd0b7
PP
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
94480b71 465warn_prebuilt_man_pages=no
4ddbd0b7
PP
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.
94480b71 486 warn_prebuilt_man_pages=yes
4ddbd0b7
PP
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
2b4444ce
PP
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
e1c62734
MJ
507AM_CFLAGS="-Wall"
508AC_SUBST(AM_CFLAGS)
509AC_SUBST(JNI_CPPFLAGS)
510
55355fa5
JB
511AC_CONFIG_FILES([
512 Makefile
7ccf75d3
MD
513 doc/Makefile
514 doc/examples/Makefile
4ddbd0b7 515 doc/man/Makefile
69400ac4 516 include/Makefile
b728d87e 517 include/lttng/ust-version.h
69400ac4 518 snprintf/Makefile
4931a13e 519 libringbuffer/Makefile
69400ac4
MD
520 liblttng-ust-comm/Makefile
521 liblttng-ust/Makefile
522 liblttng-ust-ctl/Makefile
523 liblttng-ust-fork/Makefile
b13d93c2 524 liblttng-ust-dl/Makefile
95e6d268 525 liblttng-ust-fd/Makefile
69400ac4 526 liblttng-ust-java/Makefile
501f6777
CB
527 liblttng-ust-java-agent/Makefile
528 liblttng-ust-java-agent/java/Makefile
8e6b6350 529 liblttng-ust-java-agent/java/lttng-ust-agent-all/Makefile
8e57e02f
AM
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
501f6777 533 liblttng-ust-java-agent/jni/Makefile
8ab5c06b 534 liblttng-ust-java-agent/jni/common/Makefile
501f6777
CB
535 liblttng-ust-java-agent/jni/jul/Makefile
536 liblttng-ust-java-agent/jni/log4j/Makefile
476037d9 537 liblttng-ust-libc-wrapper/Makefile
70d654f2 538 liblttng-ust-cyg-profile/Makefile
c3e14096 539 liblttng-ust-python-agent/Makefile
5b6ff569
PP
540 python-lttngust/Makefile
541 python-lttngust/setup.py
542 python-lttngust/lttngust/__init__.py
b25c5b37 543 tools/Makefile
6dd969b5 544 tests/Makefile
c785c634 545 tests/ctf-types/Makefile
6dd969b5 546 tests/hello/Makefile
6b79f035 547 tests/hello.cxx/Makefile
90c09854 548 tests/same_line_tracepoint/Makefile
d23b20e9 549 tests/snprintf/Makefile
22609c7a 550 tests/ust-elf/Makefile
a44af49d 551 tests/benchmark/Makefile
9a4b88ff 552 tests/utils/Makefile
53569322 553 tests/test-app-ctx/Makefile
5a673446 554 tests/gcc-weak-hidden/Makefile
74a6d87b 555 lttng-ust.pc
55355fa5 556])
1f9eff07 557
bf261856
JR
558# Create link for python agent for the VPATH guru.
559AC_CONFIG_LINKS([
5b6ff569
PP
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
bf261856
JR
564])
565
1304f3df 566AC_OUTPUT
1f9eff07 567
94480b71
MJ
568
569#
570# Mini-report on what will be built.
571#
572
573PPRINT_INIT
574PPRINT_SET_INDENT(1)
575PPRINT_SET_TS(38)
576
2770ab16 577AS_ECHO
94480b71 578AS_ECHO("${PPRINT_COLOR_BLDBLU}LTTng-ust $PACKAGE_VERSION \"V_NAME\"$PPRINT_COLOR_RST")
2a5b1cfe 579AS_ECHO
649282a8 580
94480b71
MJ
581AS_ECHO("V_DESC")
582
2a5b1cfe 583AS_ECHO
94480b71
MJ
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])
1f9eff07 613
bfcda6ce
MD
614test "x$enable_numa" = xyes && value=1 || value=0
615PPRINT_PROP_BOOL([NUMA], $value)
616
2a5b1cfe 617AS_ECHO
94480b71 618PPRINT_SET_INDENT(0)
501f6777 619
08aa9a26
PP
620test "x$enable_examples" = xyes && value=1 || value=0
621PPRINT_PROP_BOOL([Build and install examples], $value, $PPRINT_COLOR_SUBTITLE)
622
94480b71
MJ
623# man pages build enabled/disabled
624m4_pushdef([build_man_pages_msg], [Build and install man pages])
501f6777 625
94480b71
MJ
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])
501f6777 641
94480b71 642m4_popdef([build_man_pages_msg])
1f9eff07 643
94480b71 644PPRINT_SET_INDENT(1)
c3e14096 645
94480b71
MJ
646report_bindir="`eval eval echo $bindir`"
647report_libdir="`eval eval echo $libdir`"
1f9eff07 648
94480b71 649# Print the bindir and libdir this `make install' will install into.
2a5b1cfe 650AS_ECHO
94480b71
MJ
651PPRINT_SUBTITLE([Install directories])
652PPRINT_PROP_STRING([Binaries], [$report_bindir])
653PPRINT_PROP_STRING([Libraries], [$report_libdir])
0ea8bd08 654
94480b71
MJ
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.
1f9eff07 665
94480b71
MJ
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.0663 seconds and 4 git commands to generate.