Commit | Line | Data |
---|---|---|
f4a9899e MJ |
1 | dnl SPDX-License-Identifier: LGPL-2.1-only |
2 | dnl | |
3 | dnl Copyright (C) 2021 EfficiOS, Inc. | |
4 | dnl | |
5 | dnl Process this file with autoconf to produce a configure script. | |
6 | ||
7 | ||
8 | # Project version information | |
9 | m4_define([ust_version_major], [2]) | |
10 | m4_define([ust_version_minor], [13]) | |
5ad3afb1 | 11 | m4_define([ust_version_patch], [1]) |
45262bfa | 12 | m4_define([ust_version_dev_stage], []) |
f4a9899e | 13 | m4_define([ust_version], ust_version_major[.]ust_version_minor[.]ust_version_patch[]ust_version_dev_stage) |
1c2ed66a MJ |
14 | m4_define([ust_version_name], [[Nordicité]]) |
15 | m4_define([ust_version_description], [[The product of a collaboration between Champ Libre and Boréale, this farmhouse IPA is brewed with Kveik yeast and Québec-grown barley, oats and juniper branches. The result is a remarkable fruity hazy golden IPA that offers a balanced touch of resinous and woodsy bitterness.]]) | |
f4a9899e MJ |
16 | |
17 | # Library version information of "liblttng-ust" | |
18 | # Following the numbering scheme proposed by libtool for the library version | |
19 | # http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html | |
20 | m4_define([ust_lib_version_current], [1]) | |
21 | m4_define([ust_lib_version_revision], [0]) | |
22 | m4_define([ust_lib_version_age], [0]) | |
23 | m4_define([ust_lib_version], ust_lib_version_current[:]ust_lib_version_revision[:]ust_lib_version_age) | |
94480b71 | 24 | |
f4a9899e | 25 | # Library version information of "liblttng-ust-ctl" |
a334646a MD |
26 | # Following the numbering scheme proposed by libtool for the library version |
27 | # http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html | |
f4a9899e MJ |
28 | m4_define([ust_ctl_lib_version_current], [5]) |
29 | m4_define([ust_ctl_lib_version_revision], [0]) | |
30 | m4_define([ust_ctl_lib_version_age], [0]) | |
31 | m4_define([ust_ctl_lib_version], ust_ctl_lib_version_current[:]ust_ctl_lib_version_revision[:]ust_ctl_lib_version_age) | |
32 | ||
23e08412 | 33 | |
f4a9899e MJ |
34 | ## ## |
35 | ## Autoconf base setup ## | |
36 | ## ## | |
a334646a | 37 | |
f4a9899e MJ |
38 | AC_PREREQ([2.69]) |
39 | AC_INIT([lttng-ust],[ust_version],[mathieu dot desnoyers at efficios dot com],[],[https://lttng.org]) | |
41a2a9aa | 40 | |
74e79a0d | 41 | AC_CONFIG_HEADERS([src/common/config.h include/lttng/ust-config.h include/lttng/ust-version.h]) |
55355fa5 | 42 | AC_CONFIG_AUX_DIR([config]) |
94480b71 | 43 | AC_CONFIG_MACRO_DIR([m4]) |
94480b71 | 44 | |
9441df61 PMF |
45 | AC_CANONICAL_TARGET |
46 | AC_CANONICAL_HOST | |
94480b71 | 47 | |
f4a9899e MJ |
48 | |
49 | ## ## | |
50 | ## Automake base setup ## | |
51 | ## ## | |
52 | ||
0f6f0e89 | 53 | AM_INIT_AUTOMAKE([1.12 foreign dist-bzip2 no-dist-gzip tar-ustar nostdinc -Wall -Wno-portability -Werror]) |
846154aa | 54 | AM_MAINTAINER_MODE([enable]) |
94480b71 | 55 | |
80268473 MJ |
56 | # Enable silent rules by default |
57 | AM_SILENT_RULES([yes]) | |
4846fadc | 58 | |
2bee6b25 | 59 | |
dd08adc1 MJ |
60 | ## ## |
61 | ## OS and Arch specific defaults ## | |
62 | ## ## | |
63 | ||
64 | # Set os specific options | |
65 | AS_CASE([$host_os], | |
ed6dd5d6 | 66 | [freebsd*], [AE_FEATURE_DISABLE([numa])] |
dd08adc1 MJ |
67 | ) |
68 | ||
69 | # Set architecture specific options | |
70 | AS_CASE([$host_cpu], | |
71 | [i[[3456]]86], [], | |
72 | [x86_64], [], | |
73 | [amd64], [], | |
74 | [powerpc], [], | |
75 | [ppc64], [], | |
76 | [ppc64le], [], | |
77 | [powerpc64], [], | |
78 | [powerpc64le], [], | |
79 | [s390], [], | |
80 | [s390x], [], | |
ed6dd5d6 | 81 | [arm*], [AE_FEATURE_DISABLE([numa])], |
dd08adc1 MJ |
82 | [aarch64*], [], |
83 | [mips*], [], | |
84 | [tile*], [], | |
85 | [ | |
86 | unsupported_arch="yes" | |
87 | ]) | |
88 | ||
89 | ||
2bee6b25 MJ |
90 | ## ## |
91 | ## C compiler checks ## | |
92 | ## ## | |
93 | ||
94 | # Choose the C compiler | |
94480b71 | 95 | AC_PROG_CC |
f436dc74 JG |
96 | # AC_PROG_CC_STDC was merged in AC_PROG_CC in autoconf 2.70 |
97 | m4_version_prereq([2.70], [], [AC_PROG_CC_STDC]) | |
23c8854a | 98 | |
2bee6b25 MJ |
99 | # Make sure the C compiler supports C99 |
100 | AS_IF([test "$ac_cv_prog_cc_c99" = "no"], [AC_MSG_ERROR([The compiler does not support C99])]) | |
101 | ||
102 | # Enable available system extensions and LFS support | |
103 | AC_USE_SYSTEM_EXTENSIONS | |
104 | AC_SYS_LARGEFILE | |
105 | ||
106 | # Make sure the C compiler supports __attribute__ | |
107 | AX_C___ATTRIBUTE__ | |
108 | AS_IF([test "x$ax_cv___attribute__" != "xyes"], | |
109 | [AC_MSG_ERROR([The compiler does not support __attribute__ extensions])]) | |
110 | ||
111 | # Make sure we have pthread support | |
112 | AX_PTHREAD([], [AC_MSG_ERROR([Could not configure pthread support])]) | |
113 | ||
114 | # Make sure the C compiler supports weak symbols | |
94480b71 | 115 | AX_SYS_WEAK_ALIAS |
2bee6b25 MJ |
116 | AS_IF([test "x$ax_cv_sys_weak_alias" = "xno"], |
117 | [AC_MSG_ERROR([Your platform doesn't support weak symbols.])]) | |
118 | ||
119 | # Checks for typedefs, structures, and compiler characteristics. | |
120 | AC_C_INLINE | |
121 | AC_C_TYPEOF | |
122 | AC_TYPE_INT16_T | |
123 | AC_TYPE_INT32_T | |
124 | AC_TYPE_INT64_T | |
125 | AC_TYPE_INT8_T | |
126 | AC_TYPE_MODE_T | |
127 | AC_TYPE_OFF_T | |
128 | AC_TYPE_PID_T | |
129 | AC_TYPE_SIZE_T | |
130 | AC_TYPE_SSIZE_T | |
131 | AC_TYPE_UID_T | |
132 | AC_TYPE_UINT16_T | |
133 | AC_TYPE_UINT32_T | |
134 | AC_TYPE_UINT64_T | |
135 | AC_TYPE_UINT8_T | |
136 | AC_CHECK_TYPES([ptrdiff_t]) | |
137 | ||
31c7a68a MJ |
138 | # Detect warning flags supported by the C compiler and append them to |
139 | # WARN_CFLAGS. | |
140 | m4_define([WARN_FLAGS_LIST], [ dnl | |
141 | -Wall dnl | |
142 | -Wextra dnl | |
143 | -Wmissing-prototypes dnl | |
144 | -Wmissing-declarations dnl | |
145 | -Wnull-dereference dnl | |
146 | -Wundef dnl | |
147 | -Wshadow dnl | |
148 | -Wjump-misses-init dnl | |
149 | -Wsuggest-attribute=format dnl | |
150 | -Wtautological-constant-out-of-range-compare dnl | |
151 | -Wnested-externs dnl | |
152 | -Wwrite-strings dnl | |
153 | -Wformat=2 dnl | |
154 | -Wstrict-aliasing dnl | |
155 | -Wmissing-noreturn dnl | |
156 | -Winit-self dnl | |
157 | -Wduplicated-cond dnl | |
158 | -Wduplicated-branches dnl | |
159 | -Wlogical-op dnl | |
160 | dnl These would require reworking the tracepoint macros | |
161 | dnl-Wredundant-decls dnl | |
162 | -Wno-sign-compare dnl | |
163 | -Wno-missing-field-initializers dnl | |
164 | -Wno-null-dereference dnl | |
165 | ]) | |
166 | ||
167 | # Pass -Werror as an extra flag during the test: this is needed to make the | |
168 | # -Wunknown-warning-option diagnostic fatal with clang. | |
169 | AC_LANG_PUSH([C]) | |
170 | AX_APPEND_COMPILE_FLAGS([WARN_FLAGS_LIST], [WARN_CFLAGS], [-Werror]) | |
171 | AC_LANG_POP([C]) | |
172 | ||
173 | # The test used in AX_APPEND_COMPILE_FLAGS, generated using AC_LANG_PROGRAM, is | |
174 | # written in such a way that it triggers warnings with the following warning | |
175 | # flags. So they would always end up disabled if we put them there, because | |
176 | # the test program would not build. | |
177 | # | |
178 | # Enable them here unconditionally. They are supported by GCC >= 4.8 and by | |
179 | # Clang >= 3.3 (required by the project) and are only valid for C code. | |
180 | WARN_CFLAGS="${WARN_CFLAGS} -Wold-style-definition -Wstrict-prototypes" | |
181 | ||
08c0c18a MJ |
182 | # Disable 'strict aliasing' if the compiler supports it. |
183 | AC_LANG_PUSH([C]) | |
184 | AX_APPEND_COMPILE_FLAGS([-fno-strict-aliasing], [OPT_CFLAGS], [-Werror]) | |
185 | AC_LANG_POP([C]) | |
186 | ||
2bee6b25 MJ |
187 | |
188 | ## ## | |
189 | ## C++ compiler checks ## | |
190 | ## ## | |
191 | ||
192 | # Find an optional C++11 compiler without GNU extensions (-std=c++11) | |
193 | AX_CXX_COMPILE_STDCXX([11], [noext], [optional]) | |
94480b71 | 194 | |
31c7a68a MJ |
195 | AS_IF([test "$HAVE_CXX11" = "1"], [ |
196 | # Pass -Werror as an extra flag during the test: this is needed to make the | |
197 | # -Wunknown-warning-option diagnostic fatal with clang. | |
198 | AC_LANG_PUSH([C++]) | |
199 | AX_APPEND_COMPILE_FLAGS([WARN_FLAGS_LIST -Wno-undef -Wno-duplicated-branches], [WARN_CXXFLAGS], [-Werror]) | |
200 | AC_LANG_POP([C++]) | |
201 | ]) | |
202 | ||
161239e0 | 203 | |
eeef0055 MJ |
204 | ## ## |
205 | ## Header checks ## | |
206 | ## ## | |
207 | ||
208 | AC_HEADER_STDBOOL | |
209 | AC_CHECK_HEADERS([ \ | |
210 | arpa/inet.h \ | |
211 | dlfcn.h \ | |
212 | fcntl.h \ | |
213 | float.h \ | |
214 | limits.h \ | |
215 | linux/perf_event.h \ | |
216 | locale.h \ | |
217 | stddef.h \ | |
218 | sys/socket.h \ | |
219 | sys/time.h \ | |
220 | wchar.h \ | |
221 | ]) | |
222 | ||
223 | # Check for dlinfo() by testing for RTLD_DI_LINKMAP in dlfcn.h | |
224 | AS_IF([test "x$ac_cv_header_dlfcn_h" = "xyes"], [ | |
225 | AC_CHECK_DECL([RTLD_DI_LINKMAP], [], [], [[#include <dlfcn.h>]]) | |
226 | ]) | |
227 | ||
228 | ||
49f89ab8 MJ |
229 | ## ## |
230 | ## Programs checks ## | |
231 | ## ## | |
232 | ||
8aeb3cae | 233 | AM_PROG_AR |
46a73fe4 | 234 | AC_PROG_SED |
faebb418 | 235 | AC_PROG_GREP |
85e09133 | 236 | AC_PROG_LN_S |
4c70c05c | 237 | AC_PROG_MKDIR_P |
94480b71 | 238 | AC_PROG_MAKE_SET |
49f89ab8 MJ |
239 | AC_CHECK_PROGS([ASCIIDOC], [asciidoc]) |
240 | AC_CHECK_PROGS([CMAKE], [cmake]) | |
241 | AC_CHECK_PROGS([FOLD], [fold]) | |
242 | AC_CHECK_PROGS([XMLTO], [xmlto]) | |
46a73fe4 | 243 | |
49f89ab8 | 244 | AM_PATH_PYTHON([2.7], [], [PYTHON=""]) |
86adb855 | 245 | |
49f89ab8 | 246 | # Initialize and configure libtool |
94480b71 | 247 | LT_INIT([disable-static]) |
faebb418 | 248 | |
49f89ab8 | 249 | |
a423db3f MJ |
250 | ## ## |
251 | ## Library checks ## | |
252 | ## ## | |
49f89ab8 | 253 | |
94480b71 MJ |
254 | AC_FUNC_CHOWN |
255 | AC_FUNC_FORK | |
256 | AC_FUNC_MMAP | |
94480b71 MJ |
257 | AC_FUNC_STRERROR_R |
258 | AC_FUNC_STRNLEN | |
259 | AC_CHECK_FUNCS([ \ | |
a423db3f MJ |
260 | atexit \ |
261 | clock_gettime \ | |
262 | ftruncate \ | |
263 | getpagesize \ | |
4f86e0d0 | 264 | gettid \ |
a423db3f MJ |
265 | gettimeofday \ |
266 | localeconv \ | |
267 | memchr \ | |
268 | memmove \ | |
269 | memset \ | |
270 | mkdir \ | |
271 | munmap \ | |
272 | realpath \ | |
273 | sched_getcpu \ | |
274 | socket \ | |
275 | strchr \ | |
276 | strdup \ | |
277 | strerror \ | |
278 | strtol \ | |
279 | strtoul \ | |
280 | sysconf \ | |
86adb855 | 281 | ]) |
340f7763 | 282 | |
a423db3f MJ |
283 | # AC_FUNC_MALLOC causes problems when cross-compiling. |
284 | #AC_FUNC_MALLOC | |
285 | #AC_FUNC_REALLOC | |
286 | ||
d9c56a93 MJ |
287 | # Check for pthread_setname_np and its signature |
288 | LTTNG_PTHREAD_SETNAME_NP | |
653f7d34 | 289 | LTTNG_PTHREAD_GETNAME_NP |
d9c56a93 | 290 | |
a423db3f MJ |
291 | # Check dor dlopen() in -ldl or -lc |
292 | AC_CHECK_LIB([dl], [dlopen], [ | |
293 | libdl_name=dl | |
294 | DL_LIBS="-ldl" | |
295 | ], [ | |
296 | # dlopen not found in libdl, check in libc | |
297 | AC_CHECK_LIB([c], [dlopen], [ | |
298 | libdl_name=c | |
299 | DL_LIBS="-lc" | |
300 | ], [ | |
301 | AC_MSG_ERROR([Cannot find dlopen in libdl nor libc. Use [LDFLAGS]=-Ldir to specify their location.]) | |
302 | ]) | |
303 | ]) | |
304 | AC_SUBST(DL_LIBS) | |
305 | ||
306 | # Check if libdl has dlmopen() | |
307 | AC_CHECK_LIB([$libdl_name], [dlmopen], [ | |
308 | AC_DEFINE([HAVE_DLMOPEN], [1], [Define to 1 if dlmopen is available.]) | |
309 | ]) | |
310 | ||
311 | # Require URCU >= 0.12 for DEFINE_URCU_TLS_INIT | |
312 | PKG_CHECK_MODULES([URCU], [liburcu >= 0.12]) | |
313 | ||
314 | ||
ed6dd5d6 MJ |
315 | ## ## |
316 | ## User variables ## | |
317 | ## ## | |
a423db3f | 318 | |
ed6dd5d6 | 319 | # Additional variables captured during ./configure |
f1d4b810 | 320 | |
ed6dd5d6 | 321 | AC_ARG_VAR([CLASSPATH], [Java class path]) |
94480b71 | 322 | |
42330adc | 323 | |
ed6dd5d6 MJ |
324 | ## ## |
325 | ## Optionnal features selection ## | |
326 | ## ## | |
f9ff7aa4 | 327 | |
ed6dd5d6 MJ |
328 | # numa integration |
329 | # Enabled by default, except on some platforms | |
330 | AE_FEATURE_DEFAULT_ENABLE | |
331 | AE_FEATURE([numa],[disable NUMA support]) | |
c95c332a | 332 | |
ed6dd5d6 MJ |
333 | # Java JNI interface library |
334 | # Disabled by default | |
335 | AE_FEATURE_DEFAULT_DISABLE | |
336 | AE_FEATURE([jni-interface], [build JNI interface between C and Java]) | |
bfcda6ce | 337 | |
ed6dd5d6 MJ |
338 | # Build the Java Logging API agent |
339 | # Disabled by default | |
340 | AE_FEATURE_DEFAULT_DISABLE | |
341 | AE_FEATURE([java-agent-jul],[build the LTTng UST Java agent with JUL support]) | |
e3073410 | 342 | |
ed6dd5d6 MJ |
343 | # Build the Java Log4j agent |
344 | # Disabled by default | |
345 | AE_FEATURE_DEFAULT_DISABLE | |
346 | AE_FEATURE([java-agent-log4j],[build the LTTng UST Java agent with Log4j support]) | |
d58d1454 | 347 | |
ed6dd5d6 MJ |
348 | # Build both Java agents |
349 | # Disabled by default | |
350 | AE_FEATURE_DEFAULT_DISABLE | |
351 | AE_FEATURE([java-agent-all],[build the LTTng UST Java agent with all supported backends]) | |
2b6f8df9 | 352 | |
ed6dd5d6 MJ |
353 | # Build the Python agent |
354 | # Disabled by default | |
355 | AE_FEATURE_DEFAULT_DISABLE | |
356 | AE_FEATURE([python-agent],[build the LTTng UST Python agent]) | |
2b6f8df9 | 357 | |
ed6dd5d6 MJ |
358 | # Build the examples |
359 | # Disabled by default | |
360 | AE_FEATURE_DEFAULT_ENABLE | |
361 | AE_FEATURE([examples],[Do not build and install examples]) | |
501f6777 | 362 | |
ed6dd5d6 MJ |
363 | # Man pages |
364 | # Enabled by default | |
365 | AE_FEATURE_DEFAULT_ENABLE | |
366 | AE_FEATURE([man-pages],[Do not build and install man pages (already built in a distributed tarball)]) | |
367 | ||
368 | # Systemtap sdt.h integration | |
369 | # Disabled by default | |
370 | AC_ARG_WITH([sdt], | |
371 | [AS_HELP_STRING([--with-sdt], [provide SystemTap integration via sdt.h [default=no]])] | |
372 | ) | |
501f6777 | 373 | |
ed6dd5d6 MJ |
374 | # Override the default runtime directory |
375 | AC_ARG_WITH([lttng-system-rundir], [ | |
376 | 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".]), | |
86adb855 | 377 | ], [ |
ed6dd5d6 | 378 | lttng_system_rundir="$withval" |
86adb855 | 379 | ], [ |
ed6dd5d6 | 380 | lttng_system_rundir="/var/run/lttng" |
86adb855 | 381 | ]) |
501f6777 | 382 | |
ed6dd5d6 MJ |
383 | # Add the java command line arguments like '--wit-java-prefix' |
384 | AX_JAVA_OPTIONS | |
501f6777 | 385 | |
501f6777 | 386 | |
ed6dd5d6 MJ |
387 | ## ## |
388 | ## Check for conflicting features selection ## | |
389 | ## ## | |
501f6777 | 390 | |
ed6dd5d6 MJ |
391 | AE_IF_FEATURE_DISABLED([shared], [ |
392 | AC_MSG_ERROR(LTTng-UST requires shared libraries to be enabled) | |
393 | ]) | |
501f6777 | 394 | |
ed6dd5d6 MJ |
395 | AE_IF_FEATURE_ENABLED([java-agent-all], [ |
396 | AE_FEATURE_ENABLE([java-agent-jul]) | |
397 | AE_FEATURE_ENABLE([java-agent-log4j]) | |
0e7d861a | 398 | ]) |
501f6777 | 399 | |
1f0418c7 | 400 | |
ed6dd5d6 MJ |
401 | ## ## |
402 | ## Check for optional features dependencies ## | |
403 | ## ## | |
404 | ||
405 | # The numa integration requires libnuma | |
406 | AE_IF_FEATURE_ENABLED([numa], [ | |
1924626b JR |
407 | AC_CHECK_LIB([numa], [numa_available], [ |
408 | AC_DEFINE([HAVE_LIBNUMA], [1], [Define to 1 if libnuma is available.]) | |
409 | ], [ | |
ed6dd5d6 MJ |
410 | AC_MSG_ERROR([dnl |
411 | libnuma is not available. Please either install it (e.g. libnuma-dev) or use | |
412 | [LDFLAGS]=-Ldir to specify the right location, or use --disable-numa configure | |
413 | argument to disable NUMA support. | |
414 | ]) | |
415 | ]) | |
0e7d861a | 416 | ]) |
501f6777 | 417 | |
ed6dd5d6 MJ |
418 | # The JNI interface and Java Agents require a working Java JDK |
419 | AS_IF([AE_IS_FEATURE_ENABLED([jni-interface]) || AE_IS_FEATURE_ENABLED([java-agent-jul]) || AE_IS_FEATURE_ENABLED([java-agent-log4j])], [ | |
875cae80 MJ |
420 | AX_PROG_JAVAC |
421 | AX_PROG_JAVA | |
422 | AX_PROG_JAR | |
ed6dd5d6 MJ |
423 | |
424 | # Get the CPPFLAGS required to build jni libaries | |
425 | AX_JNI_INCLUDE_DIR | |
426 | for jni_include_dir in $JNI_INCLUDE_DIRS; do | |
427 | JNI_CPPFLAGS="$JNI_CPPFLAGS -I$jni_include_dir" | |
428 | done | |
429 | ||
430 | # Check for javah and jni.h | |
431 | saved_CPPFLAGS="$CPPFLAGS" | |
432 | CPPFLAGS="$CPPFLAGS $JNI_CPPFLAGS" | |
433 | AX_PROG_JAVAH | |
434 | CPPFLAGS="$saved_CPPFLAGS" | |
435 | ]) | |
c3e14096 | 436 | |
ed6dd5d6 MJ |
437 | # The log4j agent requires the log4j jar in the classpath |
438 | AE_IF_FEATURE_ENABLED([java-agent-log4j], [ | |
439 | AX_CHECK_CLASS([org.apache.log4j.Logger]) | |
440 | AS_IF([test "x$ac_cv_class_org_apache_log4j_Logger" = "xno"], [ | |
441 | AC_MSG_ERROR([dnl | |
442 | The UST Java agent support for log4j was requested but the Log4j classes were | |
443 | not found. Please specify the location of the Log4j jar via the Java CLASSPATH | |
444 | environment variable, e.g. ./configure CLASSPATH="/path/to/log4j.jar" | |
445 | ||
446 | Current CLASSPATH: "$CLASSPATH" | |
447 | ]) | |
448 | ]) | |
86adb855 | 449 | ]) |
4846fadc | 450 | |
ed6dd5d6 MJ |
451 | # The python agent requires a python interpreter |
452 | AE_IF_FEATURE_ENABLED([python-agent], [ | |
453 | AS_IF([test "x$PYTHON" = "x"], [ | |
454 | AC_MSG_ERROR([dnl | |
455 | Cannot find a suitable python interpreter. You can override it with the PYTHON | |
456 | environment variable. | |
457 | ]) | |
458 | ]) | |
4846fadc AM |
459 | ]) |
460 | ||
ed6dd5d6 MJ |
461 | # Check for asciidoc and xmlto if we enabled building the man pages. |
462 | AE_IF_FEATURE_ENABLED([man-pages], [ | |
463 | AS_IF([test "x$ASCIIDOC" = "x" || test "x$XMLTO" = "x"], [ | |
464 | AE_IF_IN_GIT_REPO([ | |
465 | # This is an error because we're in the Git repo, which | |
466 | # means the man pages are not already generated for us, | |
467 | # thus asciidoc/xmlto are required because we were asked | |
468 | # to build the man pages. | |
469 | AC_MSG_ERROR([dnl | |
470 | Both asciidoc and xmlto are needed to build the LTTng-UST man pages. Use | |
471 | --disable-man-pages to disable building the man pages, in which case | |
472 | they will not be installed. | |
473 | ]) | |
474 | ], [ | |
475 | # Only warn here: since we're in the tarball, the man | |
476 | # pages should already be generated at this point, thus | |
477 | # asciidoc/xmlto are not strictly required. | |
478 | warn_prebuilt_man_pages=yes | |
479 | ]) | |
480 | ], [ | |
481 | have_asciidoc_xmlto=yes | |
482 | ]) | |
483 | ]) | |
484 | ||
485 | AS_IF([test "x$with_sdt" = "xyes"], [ | |
486 | AC_MSG_CHECKING([STAP_PROBEV()]) | |
487 | AC_COMPILE_IFELSE([AC_LANG_SOURCE([[ | |
488 | #define SDT_USE_VARIADIC | |
489 | #include <sys/sdt.h> | |
490 | void fct(void) | |
491 | { | |
492 | STAP_PROBEV(provider,name,1,2,3,4,5,6,7,8,9,10); | |
493 | } | |
494 | ]])], [ | |
495 | AC_MSG_RESULT([yes]) | |
496 | AC_DEFINE([LTTNG_UST_HAVE_SDT_INTEGRATION], [1], [SystemTap integration via sdt.h]) | |
497 | ], [ | |
498 | AC_MSG_RESULT([no]) | |
499 | AC_MSG_ERROR([dnl | |
500 | The sdt.h integration was requested but the STAP_PROBEV define cannot be used. | |
501 | Make sure it is installed, and up to date, or use CPPFLAGS=-I/path/ to specify | |
502 | a non-standard path to sys/sdt.h | |
503 | ]) | |
504 | ]) | |
86adb855 | 505 | ]) |
ed6dd5d6 MJ |
506 | |
507 | ||
b7c38855 MJ |
508 | ## ## |
509 | ## Set defines for optional features conditionnals in the source code ## | |
510 | ## ## | |
511 | ||
512 | AC_DEFINE_UNQUOTED([LTTNG_SYSTEM_RUNDIR], ["$lttng_system_rundir"], [LTTng system runtime directory]) | |
513 | ||
514 | # Defined in include/lttng/ust-version.h | |
515 | AC_DEFINE([LTTNG_UST_MAJOR_VERSION], ust_version_major, [LTTng UST major version]) | |
516 | AC_DEFINE([LTTNG_UST_MINOR_VERSION], ust_version_minor, [LTTng UST minor version]) | |
517 | AC_DEFINE([LTTNG_UST_PATCHLEVEL_VERSION], ust_version_patch, [LTTng UST patch version]) | |
518 | AC_DEFINE([LTTNG_UST_VERSION], ["]ust_version["], [LTTng UST version string]) | |
519 | AC_DEFINE([LTTNG_UST_LIB_SONAME_MAJOR], [ust_lib_version_current], [Major SONAME number of liblttng-ust]) | |
520 | AC_DEFINE([LTTNG_UST_CTL_LIB_SONAME_MAJOR], [ust_ctl_lib_version_current], [Major SONAME number of liblttng-ust-ctl]) | |
521 | ||
522 | ||
f574bfb4 MJ |
523 | ## ## |
524 | ## Set automake variables for optional feature conditionnals in Makefile.am ## | |
525 | ## ## | |
ed6dd5d6 | 526 | |
f574bfb4 | 527 | AM_CONDITIONAL([ENABLE_EXAMPLES], AE_IS_FEATURE_ENABLED([examples])) |
49f89ab8 | 528 | AM_CONDITIONAL([ENABLE_GEN_TP_EXAMPLES], [test "x$PYTHON" != "x"]) |
f574bfb4 MJ |
529 | AM_CONDITIONAL([ENABLE_JAVA_AGENT], AE_IS_FEATURE_ENABLED([java-agent-jul]) || AE_IS_FEATURE_ENABLED([java-agent-log4j])) |
530 | AM_CONDITIONAL([ENABLE_JAVA_AGENT_WITH_JUL], AE_IS_FEATURE_ENABLED([java-agent-jul])) | |
531 | AM_CONDITIONAL([ENABLE_JAVA_AGENT_WITH_LOG4J], AE_IS_FEATURE_ENABLED([java-agent-log4j])) | |
532 | AM_CONDITIONAL([ENABLE_JNI_INTERFACE], AE_IS_FEATURE_ENABLED([jni-interface])) | |
533 | AM_CONDITIONAL([ENABLE_MAN_PAGES], AE_IS_FEATURE_ENABLED([man-pages])) | |
534 | AM_CONDITIONAL([ENABLE_NUMA], AE_IS_FEATURE_ENABLED([numa])) | |
535 | AM_CONDITIONAL([ENABLE_PYTHON_AGENT], AE_IS_FEATURE_ENABLED([python-agent])) | |
536 | AM_CONDITIONAL([ENABLE_UST_DL], [test "x$ac_cv_have_decl_RTLD_DI_LINKMAP" = "xyes"]) | |
4ddbd0b7 | 537 | AM_CONDITIONAL([HAVE_ASCIIDOC_XMLTO], [test "x$have_asciidoc_xmlto" = "xyes"]) |
f574bfb4 MJ |
538 | AM_CONDITIONAL([HAVE_CMAKE], [test "x$CMAKE" != "x"]) |
539 | AM_CONDITIONAL([HAVE_CXX], [test "$HAVE_CXX11" = "1"]) | |
540 | AM_CONDITIONAL([HAVE_JAVAH], [test "x$JAVAH" != "x"]) | |
541 | AM_CONDITIONAL([HAVE_PERF_EVENT], [test "x$ac_cv_header_linux_perf_event_h" = "xyes"]) | |
4ddbd0b7 | 542 | |
46f5fb4c MJ |
543 | |
544 | ## ## | |
545 | ## Substitute variables for use in Makefile.am ## | |
546 | ## ## | |
547 | ||
548 | # Library versions for libtool | |
549 | AC_SUBST([LTTNG_UST_LIBRARY_VERSION], ust_lib_version) | |
550 | AC_SUBST([LTTNG_UST_CTL_LIBRARY_VERSION], ust_ctl_lib_version) | |
551 | ||
50d2bb48 MJ |
552 | # Major soname for python-lttngust |
553 | AC_SUBST([LTTNG_UST_LIB_SONAME_MAJOR], [ust_lib_version_current]) | |
554 | ||
08c0c18a | 555 | AM_CFLAGS="$OPT_CFLAGS $WARN_CFLAGS $URCU_CFLAGS $PTHREAD_CFLAGS" |
e1c62734 | 556 | AC_SUBST(AM_CFLAGS) |
fb54defd | 557 | |
31c7a68a | 558 | AM_CXXFLAGS="$WARN_CXXFLAGS $URCU_CFLAGS $PTHREAD_CFLAGS" |
04022848 MJ |
559 | AC_SUBST(AM_CXXFLAGS) |
560 | ||
fb54defd MJ |
561 | # The order in which the include folders are searched is important. |
562 | # The top_builddir should always be searched first in the event that a build | |
563 | # time generated file is included. | |
74e79a0d | 564 | AM_CPPFLAGS="-I\$(top_builddir)/include -I\$(top_srcdir)/include -I\$(top_builddir)/src -I\$(top_srcdir)/src -include common/config.h" |
fb54defd MJ |
565 | AC_SUBST(AM_CPPFLAGS) |
566 | ||
e1c62734 MJ |
567 | AC_SUBST(JNI_CPPFLAGS) |
568 | ||
f4a9899e MJ |
569 | |
570 | ## ## | |
571 | ## Output files generated by configure ## | |
572 | ## ## | |
573 | ||
574 | # List of files to be generated from '.in' templates by AC_OUTPUT | |
55355fa5 | 575 | AC_CONFIG_FILES([ |
d157934e | 576 | Makefile |
d157934e | 577 | doc/examples/Makefile |
9d4c8b2d | 578 | doc/Makefile |
d157934e | 579 | doc/man/Makefile |
5cde0f99 | 580 | extras/Makefile |
d157934e | 581 | include/Makefile |
9d315d6d | 582 | src/common/Makefile |
793dd3d9 | 583 | src/lib/lttng-ust-common/Makefile |
c80497fe | 584 | src/lib/lttng-ust-ctl/Makefile |
18a76df9 | 585 | src/lib/lttng-ust-cyg-profile/Makefile |
4871194b | 586 | src/lib/lttng-ust-dl/Makefile |
4889a38d | 587 | src/lib/lttng-ust-fd/Makefile |
18a76df9 | 588 | src/lib/lttng-ust-fork/Makefile |
3081c83f MJ |
589 | src/lib/lttng-ust-java-agent/java/lttng-ust-agent-all/Makefile |
590 | src/lib/lttng-ust-java-agent/java/lttng-ust-agent-common/Makefile | |
591 | src/lib/lttng-ust-java-agent/java/lttng-ust-agent-jul/Makefile | |
592 | src/lib/lttng-ust-java-agent/java/lttng-ust-agent-log4j/Makefile | |
593 | src/lib/lttng-ust-java-agent/java/Makefile | |
594 | src/lib/lttng-ust-java-agent/jni/common/Makefile | |
595 | src/lib/lttng-ust-java-agent/jni/jul/Makefile | |
596 | src/lib/lttng-ust-java-agent/jni/log4j/Makefile | |
597 | src/lib/lttng-ust-java-agent/jni/Makefile | |
598 | src/lib/lttng-ust-java-agent/Makefile | |
599 | src/lib/lttng-ust-java/Makefile | |
7d03a192 | 600 | src/lib/lttng-ust-libc-wrapper/Makefile |
3aa28d23 | 601 | src/lib/lttng-ust-pthread-wrapper/Makefile |
8f51c684 | 602 | src/lib/lttng-ust-tracepoint/Makefile |
6339062a | 603 | src/lib/lttng-ust/Makefile |
f1b5fe11 MJ |
604 | src/lib/lttng-ust-python-agent/Makefile |
605 | src/lib/Makefile | |
b3bdf00d MJ |
606 | src/lib/lttng-ust-ctl.pc |
607 | src/lib/lttng-ust.pc | |
9d4c8b2d MJ |
608 | src/Makefile |
609 | src/python-lttngust/lttngust/version.py | |
610 | src/python-lttngust/Makefile | |
611 | src/python-lttngust/setup.py | |
9d4c8b2d | 612 | tests/benchmark/Makefile |
6e80c5ef MJ |
613 | tests/compile/api0/ctf-types/Makefile |
614 | tests/compile/api0/hello.cxx/Makefile | |
615 | tests/compile/api0/hello/Makefile | |
616 | tests/compile/api0/hello-many/Makefile | |
617 | tests/compile/api0/Makefile | |
618 | tests/compile/api0/same_line_tracepoint/Makefile | |
442175e6 MJ |
619 | tests/compile/api1/ust-fields/Makefile |
620 | tests/compile/api1/hello.cxx/Makefile | |
621 | tests/compile/api1/hello/Makefile | |
622 | tests/compile/api1/hello-many/Makefile | |
623 | tests/compile/api1/Makefile | |
624 | tests/compile/api1/same_line_tracepoint/Makefile | |
625 | tests/compile/api1/test-app-ctx/Makefile | |
9d4c8b2d | 626 | tests/compile/Makefile |
9d4c8b2d | 627 | tests/Makefile |
6825ea44 MJ |
628 | tests/regression/abi0-conflict/Makefile |
629 | tests/regression/Makefile | |
d157934e MJ |
630 | tests/unit/gcc-weak-hidden/Makefile |
631 | tests/unit/libmsgpack/Makefile | |
d157934e | 632 | tests/unit/libringbuffer/Makefile |
9d4c8b2d | 633 | tests/unit/Makefile |
d157934e MJ |
634 | tests/unit/pthread_name/Makefile |
635 | tests/unit/snprintf/Makefile | |
636 | tests/unit/ust-elf/Makefile | |
7ae0a944 | 637 | tests/unit/ust-error/Makefile |
39550fe8 | 638 | tests/unit/ust-utils/Makefile |
d157934e | 639 | tests/utils/Makefile |
9d4c8b2d | 640 | tools/Makefile |
55355fa5 | 641 | ]) |
1f9eff07 | 642 | |
1304f3df | 643 | AC_OUTPUT |
1f9eff07 | 644 | |
94480b71 | 645 | |
f4a9899e MJ |
646 | ## ## |
647 | ## Mini-report on what will be built. ## | |
648 | ## ## | |
94480b71 MJ |
649 | |
650 | PPRINT_INIT | |
651 | PPRINT_SET_INDENT(1) | |
652 | PPRINT_SET_TS(38) | |
653 | ||
2770ab16 | 654 | AS_ECHO |
f4a9899e MJ |
655 | AS_IF([test -n "ust_version_name"], [ |
656 | AS_ECHO("${PPRINT_COLOR_BLDBLU}LTTng-ust $PACKAGE_VERSION \"ust_version_name\"$PPRINT_COLOR_RST") | |
657 | ], [ | |
658 | AS_ECHO("${PPRINT_COLOR_BLDBLU}LTTng-ust $PACKAGE_VERSION") | |
659 | ]) | |
660 | ||
2a5b1cfe | 661 | AS_ECHO |
649282a8 | 662 | |
f4a9899e MJ |
663 | AS_IF([test -n "ust_version_description"], [ |
664 | AS_IF([test -n "$FOLD"], [ | |
f5418c95 | 665 | AS_ECHO(["ust_version_description"]) | $FOLD -s |
f4a9899e | 666 | ], [ |
f5418c95 | 667 | AS_ECHO(["ust_version_description"]) |
f4a9899e MJ |
668 | ]) |
669 | AS_ECHO | |
670 | ]) | |
94480b71 | 671 | |
94480b71 MJ |
672 | PPRINT_SUBTITLE([System]) |
673 | ||
674 | PPRINT_PROP_STRING([Target architecture], $host_cpu) | |
675 | ||
dd08adc1 | 676 | AS_IF([test "x$unsupported_arch" = "xyes"],[ |
94480b71 MJ |
677 | PPRINT_WARN([Your architecture ($host_cpu) is unsupported, using safe default of no unaligned access.]) |
678 | ]) | |
679 | ||
680 | AS_ECHO | |
681 | PPRINT_SUBTITLE([Features]) | |
682 | PPRINT_SET_INDENT(1) | |
683 | ||
684 | test "x$with_sdt" = "xyes" && value=1 || value=0 | |
685 | PPRINT_PROP_BOOL_CUSTOM([sdt.h integration], $value, [use --with-sdt]) | |
686 | ||
ed6dd5d6 | 687 | AE_IS_FEATURE_ENABLED([java-agent-jul]) && value=1 || value=0 |
94480b71 MJ |
688 | PPRINT_PROP_BOOL_CUSTOM([Java agent (JUL support)], $value, [use --enable-java-agent-jul]) |
689 | ||
ed6dd5d6 | 690 | AE_IS_FEATURE_ENABLED([java-agent-log4j]) && value=1 || value=0 |
94480b71 MJ |
691 | PPRINT_PROP_BOOL_CUSTOM([Java agent (Log4j support)], $value, [use --enable-java-agent-log4j]) |
692 | ||
ed6dd5d6 | 693 | AE_IS_FEATURE_ENABLED([jni-interface]) && value=1 || value=0 |
94480b71 MJ |
694 | PPRINT_PROP_BOOL_CUSTOM([JNI interface (JNI)], $value, [use --enable-jni-interface]) |
695 | ||
ed6dd5d6 | 696 | AE_IS_FEATURE_ENABLED([python-agent]) && value=1 || value=0 |
94480b71 | 697 | PPRINT_PROP_BOOL_CUSTOM([Python agent], $value, [use --enable-python-agent]) |
1f9eff07 | 698 | |
eeef0055 | 699 | test "x$ac_cv_header_linux_perf_event_h" = "xyes" && value=1 || value=0 |
3207efee MJ |
700 | PPRINT_PROP_BOOL_CUSTOM([Perf event integration], $value) |
701 | ||
ed6dd5d6 | 702 | AE_IS_FEATURE_ENABLED([numa]) && value=1 || value=0 |
bfcda6ce MD |
703 | PPRINT_PROP_BOOL([NUMA], $value) |
704 | ||
2a5b1cfe | 705 | AS_ECHO |
94480b71 | 706 | PPRINT_SET_INDENT(0) |
501f6777 | 707 | |
ed6dd5d6 | 708 | AE_IS_FEATURE_ENABLED([examples]) && value=1 || value=0 |
08aa9a26 PP |
709 | PPRINT_PROP_BOOL([Build and install examples], $value, $PPRINT_COLOR_SUBTITLE) |
710 | ||
94480b71 MJ |
711 | # man pages build enabled/disabled |
712 | m4_pushdef([build_man_pages_msg], [Build and install man pages]) | |
501f6777 | 713 | |
ed6dd5d6 MJ |
714 | AE_IF_FEATURE_ENABLED([man-pages], [ |
715 | AE_IF_IN_GIT_REPO([ | |
716 | PPRINT_PROP_BOOL([build_man_pages_msg], 1, $PPRINT_COLOR_SUBTITLE) | |
717 | ], [ | |
718 | AS_IF([test "x$have_asciidoc_xmlto" = "xyes"], [ | |
719 | PPRINT_PROP_BOOL([build_man_pages_msg], 1, $PPRINT_COLOR_SUBTITLE) | |
720 | ], [ | |
721 | PPRINT_PROP_STRING([build_man_pages_msg], | |
722 | [${PPRINT_COLOR_BLDGRN}yes (already built)], | |
723 | $PPRINT_COLOR_SUBTITLE) | |
724 | ]) | |
725 | ]) | |
94480b71 | 726 | ], [ |
ed6dd5d6 | 727 | PPRINT_PROP_BOOL([build_man_pages_msg], 0, $PPRINT_COLOR_SUBTITLE) |
94480b71 | 728 | ]) |
501f6777 | 729 | |
94480b71 | 730 | m4_popdef([build_man_pages_msg]) |
1f9eff07 | 731 | |
94480b71 | 732 | PPRINT_SET_INDENT(1) |
c3e14096 | 733 | |
94480b71 MJ |
734 | report_bindir="`eval eval echo $bindir`" |
735 | report_libdir="`eval eval echo $libdir`" | |
1f9eff07 | 736 | |
94480b71 | 737 | # Print the bindir and libdir this `make install' will install into. |
2a5b1cfe | 738 | AS_ECHO |
94480b71 MJ |
739 | PPRINT_SUBTITLE([Install directories]) |
740 | PPRINT_PROP_STRING([Binaries], [$report_bindir]) | |
741 | PPRINT_PROP_STRING([Libraries], [$report_libdir]) | |
0ea8bd08 | 742 | |
94480b71 MJ |
743 | AS_ECHO |
744 | PPRINT_SUBTITLE([System directories]) | |
745 | ||
746 | PPRINT_PROP_STRING([lttng-sessiond rundir], [$lttng_system_rundir]) | |
747 | ||
748 | PPRINT_SET_INDENT(0) | |
749 | ||
750 | AS_IF([test "x$warn_prebuilt_man_pages" = "xyes" ], [ | |
ed6dd5d6 MJ |
751 | AS_ECHO |
752 | PPRINT_WARN([dnl | |
753 | Both asciidoc and xmlto are needed to build the LTTng-UST man pages. | |
1f9eff07 | 754 | |
94480b71 MJ |
755 | Note that the man pages are already built in this distribution tarball, |
756 | therefore asciidoc and xmlto are only needed if you intend to modify | |
757 | their sources. | |
758 | ||
759 | Use --disable-man-pages to completely disable building and installing | |
760 | the man pages.]) | |
761 | ]) | |
d157934e MJ |
762 | |
763 | # vim: shiftwidth=2 softtabstop=2 expandtab |