1 dnl SPDX-License-Identifier: LGPL-2.1-only
3 dnl Copyright (C) 2021 EfficiOS, Inc.
5 dnl Process this file with autoconf to produce a configure script.
8 # Project version information
9 m4_define([ust_version_major], [2])
10 m4_define([ust_version_minor], [13])
11 m4_define([ust_version_patch], [0])
12 m4_define([ust_version_dev_stage], [])
13 m4_define([ust_version], ust_version_major[.]ust_version_minor[.]ust_version_patch[]ust_version_dev_stage)
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.]])
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)
25 # Library version information of "liblttng-ust-ctl"
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
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)
35 ## Autoconf base setup ##
39 AC_INIT([lttng-ust],[ust_version],[mathieu dot desnoyers at efficios dot com],[],[https://lttng.org])
41 AC_CONFIG_HEADERS([src/common/config.h include/lttng/ust-config.h include/lttng/ust-version.h])
42 AC_CONFIG_AUX_DIR([config])
43 AC_CONFIG_MACRO_DIR([m4])
50 ## Automake base setup ##
53 AM_INIT_AUTOMAKE([1.12 foreign dist-bzip2 no-dist-gzip tar-ustar nostdinc -Wall -Wno-portability -Werror])
54 AM_MAINTAINER_MODE([enable])
56 # Enable silent rules by default
57 AM_SILENT_RULES([yes])
61 ## OS and Arch specific defaults ##
64 # Set os specific options
66 [freebsd*], [AE_FEATURE_DISABLE([numa])]
69 # Set architecture specific options
81 [arm*], [AE_FEATURE_DISABLE([numa])],
86 unsupported_arch="yes"
91 ## C compiler checks ##
94 # Choose the C compiler
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])
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])])
102 # Enable available system extensions and LFS support
103 AC_USE_SYSTEM_EXTENSIONS
106 # Make sure the C compiler supports __attribute__
108 AS_IF([test "x$ax_cv___attribute__" != "xyes"],
109 [AC_MSG_ERROR([The compiler does not support __attribute__ extensions])])
111 # Make sure we have pthread support
112 AX_PTHREAD([], [AC_MSG_ERROR([Could not configure pthread support])])
114 # Make sure the C compiler supports weak symbols
116 AS_IF([test "x$ax_cv_sys_weak_alias" = "xno"],
117 [AC_MSG_ERROR([Your platform doesn't support weak symbols.])])
119 # Checks for typedefs, structures, and compiler characteristics.
136 AC_CHECK_TYPES([ptrdiff_t])
138 # Detect warning flags supported by the C compiler and append them to
140 m4_define([WARN_FLAGS_LIST], [ dnl
143 -Wmissing-prototypes dnl
144 -Wmissing-declarations dnl
145 -Wnull-dereference dnl
148 -Wjump-misses-init dnl
149 -Wsuggest-attribute=format dnl
150 -Wtautological-constant-out-of-range-compare dnl
154 -Wstrict-aliasing dnl
155 -Wmissing-noreturn dnl
157 -Wduplicated-cond dnl
158 -Wduplicated-branches 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
167 # Pass -Werror as an extra flag during the test: this is needed to make the
168 # -Wunknown-warning-option diagnostic fatal with clang.
170 AX_APPEND_COMPILE_FLAGS([WARN_FLAGS_LIST], [WARN_CFLAGS], [-Werror])
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.
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"
182 # Disable 'strict aliasing' if the compiler supports it.
184 AX_APPEND_COMPILE_FLAGS([-fno-strict-aliasing], [OPT_CFLAGS], [-Werror])
189 ## C++ compiler checks ##
192 # Find an optional C++11 compiler without GNU extensions (-std=c++11)
193 AX_CXX_COMPILE_STDCXX([11], [noext], [optional])
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.
199 AX_APPEND_COMPILE_FLAGS([WARN_FLAGS_LIST -Wno-undef -Wno-duplicated-branches], [WARN_CXXFLAGS], [-Werror])
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>]])
230 ## Programs checks ##
239 AC_CHECK_PROGS([ASCIIDOC], [asciidoc])
240 AC_CHECK_PROGS([CMAKE], [cmake])
241 AC_CHECK_PROGS([FOLD], [fold])
242 AC_CHECK_PROGS([XMLTO], [xmlto])
244 AM_PATH_PYTHON([2.7], [], [PYTHON=""])
246 # Initialize and configure libtool
247 LT_INIT([disable-static])
283 # AC_FUNC_MALLOC causes problems when cross-compiling.
287 # Check for pthread_setname_np and its signature
288 LTTNG_PTHREAD_SETNAME_NP
289 LTTNG_PTHREAD_GETNAME_NP
291 # Check dor dlopen() in -ldl or -lc
292 AC_CHECK_LIB([dl], [dlopen], [
296 # dlopen not found in libdl, check in libc
297 AC_CHECK_LIB([c], [dlopen], [
301 AC_MSG_ERROR([Cannot find dlopen in libdl nor libc. Use [LDFLAGS]=-Ldir to specify their location.])
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.])
311 # Require URCU >= 0.12 for DEFINE_URCU_TLS_INIT
312 PKG_CHECK_MODULES([URCU], [liburcu >= 0.12])
319 # Additional variables captured during ./configure
321 AC_ARG_VAR([CLASSPATH], [Java class path])
325 ## Optionnal features selection ##
329 # Enabled by default, except on some platforms
330 AE_FEATURE_DEFAULT_ENABLE
331 AE_FEATURE([numa],[disable NUMA support])
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])
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])
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])
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])
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])
359 # Disabled by default
360 AE_FEATURE_DEFAULT_ENABLE
361 AE_FEATURE([examples],[Do not build and install examples])
365 AE_FEATURE_DEFAULT_ENABLE
366 AE_FEATURE([man-pages],[Do not build and install man pages (already built in a distributed tarball)])
368 # Systemtap sdt.h integration
369 # Disabled by default
371 [AS_HELP_STRING([--with-sdt], [provide SystemTap integration via sdt.h [default=no]])]
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".]),
378 lttng_system_rundir="$withval"
380 lttng_system_rundir="/var/run/lttng"
383 # Add the java command line arguments like '--wit-java-prefix'
388 ## Check for conflicting features selection ##
391 AE_IF_FEATURE_DISABLED([shared], [
392 AC_MSG_ERROR(LTTng-UST requires shared libraries to be enabled)
395 AE_IF_FEATURE_ENABLED([java-agent-all], [
396 AE_FEATURE_ENABLE([java-agent-jul])
397 AE_FEATURE_ENABLE([java-agent-log4j])
402 ## Check for optional features dependencies ##
405 # The numa integration requires libnuma
406 AE_IF_FEATURE_ENABLED([numa], [
407 AC_CHECK_LIB([numa], [numa_available], [], [
409 libnuma is not available. Please either install it (e.g. libnuma-dev) or use
410 [LDFLAGS]=-Ldir to specify the right location, or use --disable-numa configure
411 argument to disable NUMA support.
416 # The JNI interface and Java Agents require a working Java JDK
417 AS_IF([AE_IS_FEATURE_ENABLED([jni-interface]) || AE_IS_FEATURE_ENABLED([java-agent-jul]) || AE_IS_FEATURE_ENABLED([java-agent-log4j])], [
422 # Get the CPPFLAGS required to build jni libaries
424 for jni_include_dir in $JNI_INCLUDE_DIRS; do
425 JNI_CPPFLAGS="$JNI_CPPFLAGS -I$jni_include_dir"
428 # Check for javah and jni.h
429 saved_CPPFLAGS="$CPPFLAGS"
430 CPPFLAGS="$CPPFLAGS $JNI_CPPFLAGS"
432 CPPFLAGS="$saved_CPPFLAGS"
435 # The log4j agent requires the log4j jar in the classpath
436 AE_IF_FEATURE_ENABLED([java-agent-log4j], [
437 AX_CHECK_CLASS([org.apache.log4j.Logger])
438 AS_IF([test "x$ac_cv_class_org_apache_log4j_Logger" = "xno"], [
440 The UST Java agent support for log4j was requested but the Log4j classes were
441 not found. Please specify the location of the Log4j jar via the Java CLASSPATH
442 environment variable, e.g. ./configure CLASSPATH="/path/to/log4j.jar"
444 Current CLASSPATH: "$CLASSPATH"
449 # The python agent requires a python interpreter
450 AE_IF_FEATURE_ENABLED([python-agent], [
451 AS_IF([test "x$PYTHON" = "x"], [
453 Cannot find a suitable python interpreter. You can override it with the PYTHON
454 environment variable.
459 # Check for asciidoc and xmlto if we enabled building the man pages.
460 AE_IF_FEATURE_ENABLED([man-pages], [
461 AS_IF([test "x$ASCIIDOC" = "x" || test "x$XMLTO" = "x"], [
463 # This is an error because we're in the Git repo, which
464 # means the man pages are not already generated for us,
465 # thus asciidoc/xmlto are required because we were asked
466 # to build the man pages.
468 Both asciidoc and xmlto are needed to build the LTTng-UST man pages. Use
469 --disable-man-pages to disable building the man pages, in which case
470 they will not be installed.
473 # Only warn here: since we're in the tarball, the man
474 # pages should already be generated at this point, thus
475 # asciidoc/xmlto are not strictly required.
476 warn_prebuilt_man_pages=yes
479 have_asciidoc_xmlto=yes
483 AS_IF([test "x$with_sdt" = "xyes"], [
484 AC_MSG_CHECKING([STAP_PROBEV()])
485 AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
486 #define SDT_USE_VARIADIC
490 STAP_PROBEV(provider,name,1,2,3,4,5,6,7,8,9,10);
494 AC_DEFINE([LTTNG_UST_HAVE_SDT_INTEGRATION], [1], [SystemTap integration via sdt.h])
498 The sdt.h integration was requested but the STAP_PROBEV define cannot be used.
499 Make sure it is installed, and up to date, or use CPPFLAGS=-I/path/ to specify
500 a non-standard path to sys/sdt.h
507 ## Set defines for optional features conditionnals in the source code ##
510 AC_DEFINE_UNQUOTED([LTTNG_SYSTEM_RUNDIR], ["$lttng_system_rundir"], [LTTng system runtime directory])
512 # Defined in include/lttng/ust-version.h
513 AC_DEFINE([LTTNG_UST_MAJOR_VERSION], ust_version_major, [LTTng UST major version])
514 AC_DEFINE([LTTNG_UST_MINOR_VERSION], ust_version_minor, [LTTng UST minor version])
515 AC_DEFINE([LTTNG_UST_PATCHLEVEL_VERSION], ust_version_patch, [LTTng UST patch version])
516 AC_DEFINE([LTTNG_UST_VERSION], ["]ust_version["], [LTTng UST version string])
517 AC_DEFINE([LTTNG_UST_LIB_SONAME_MAJOR], [ust_lib_version_current], [Major SONAME number of liblttng-ust])
518 AC_DEFINE([LTTNG_UST_CTL_LIB_SONAME_MAJOR], [ust_ctl_lib_version_current], [Major SONAME number of liblttng-ust-ctl])
522 ## Set automake variables for optional feature conditionnals in Makefile.am ##
525 AM_CONDITIONAL([ENABLE_EXAMPLES], AE_IS_FEATURE_ENABLED([examples]))
526 AM_CONDITIONAL([ENABLE_GEN_TP_EXAMPLES], [test "x$PYTHON" != "x"])
527 AM_CONDITIONAL([ENABLE_JAVA_AGENT], AE_IS_FEATURE_ENABLED([java-agent-jul]) || AE_IS_FEATURE_ENABLED([java-agent-log4j]))
528 AM_CONDITIONAL([ENABLE_JAVA_AGENT_WITH_JUL], AE_IS_FEATURE_ENABLED([java-agent-jul]))
529 AM_CONDITIONAL([ENABLE_JAVA_AGENT_WITH_LOG4J], AE_IS_FEATURE_ENABLED([java-agent-log4j]))
530 AM_CONDITIONAL([ENABLE_JNI_INTERFACE], AE_IS_FEATURE_ENABLED([jni-interface]))
531 AM_CONDITIONAL([ENABLE_MAN_PAGES], AE_IS_FEATURE_ENABLED([man-pages]))
532 AM_CONDITIONAL([ENABLE_NUMA], AE_IS_FEATURE_ENABLED([numa]))
533 AM_CONDITIONAL([ENABLE_PYTHON_AGENT], AE_IS_FEATURE_ENABLED([python-agent]))
534 AM_CONDITIONAL([ENABLE_UST_DL], [test "x$ac_cv_have_decl_RTLD_DI_LINKMAP" = "xyes"])
535 AM_CONDITIONAL([HAVE_ASCIIDOC_XMLTO], [test "x$have_asciidoc_xmlto" = "xyes"])
536 AM_CONDITIONAL([HAVE_CMAKE], [test "x$CMAKE" != "x"])
537 AM_CONDITIONAL([HAVE_CXX], [test "$HAVE_CXX11" = "1"])
538 AM_CONDITIONAL([HAVE_JAVAH], [test "x$JAVAH" != "x"])
539 AM_CONDITIONAL([HAVE_PERF_EVENT], [test "x$ac_cv_header_linux_perf_event_h" = "xyes"])
543 ## Substitute variables for use in Makefile.am ##
546 # Library versions for libtool
547 AC_SUBST([LTTNG_UST_LIBRARY_VERSION], ust_lib_version)
548 AC_SUBST([LTTNG_UST_CTL_LIBRARY_VERSION], ust_ctl_lib_version)
550 # Major soname for python-lttngust
551 AC_SUBST([LTTNG_UST_LIB_SONAME_MAJOR], [ust_lib_version_current])
553 AM_CFLAGS="$OPT_CFLAGS $WARN_CFLAGS $URCU_CFLAGS $PTHREAD_CFLAGS"
556 AM_CXXFLAGS="$WARN_CXXFLAGS $URCU_CFLAGS $PTHREAD_CFLAGS"
557 AC_SUBST(AM_CXXFLAGS)
559 # The order in which the include folders are searched is important.
560 # The top_builddir should always be searched first in the event that a build
561 # time generated file is included.
562 AM_CPPFLAGS="-I\$(top_builddir)/include -I\$(top_srcdir)/include -I\$(top_builddir)/src -I\$(top_srcdir)/src -include common/config.h"
563 AC_SUBST(AM_CPPFLAGS)
565 AC_SUBST(JNI_CPPFLAGS)
569 ## Output files generated by configure ##
572 # List of files to be generated from '.in' templates by AC_OUTPUT
575 doc/examples/Makefile
581 src/lib/lttng-ust-common/Makefile
582 src/lib/lttng-ust-ctl/Makefile
583 src/lib/lttng-ust-cyg-profile/Makefile
584 src/lib/lttng-ust-dl/Makefile
585 src/lib/lttng-ust-fd/Makefile
586 src/lib/lttng-ust-fork/Makefile
587 src/lib/lttng-ust-java-agent/java/lttng-ust-agent-all/Makefile
588 src/lib/lttng-ust-java-agent/java/lttng-ust-agent-common/Makefile
589 src/lib/lttng-ust-java-agent/java/lttng-ust-agent-jul/Makefile
590 src/lib/lttng-ust-java-agent/java/lttng-ust-agent-log4j/Makefile
591 src/lib/lttng-ust-java-agent/java/Makefile
592 src/lib/lttng-ust-java-agent/jni/common/Makefile
593 src/lib/lttng-ust-java-agent/jni/jul/Makefile
594 src/lib/lttng-ust-java-agent/jni/log4j/Makefile
595 src/lib/lttng-ust-java-agent/jni/Makefile
596 src/lib/lttng-ust-java-agent/Makefile
597 src/lib/lttng-ust-java/Makefile
598 src/lib/lttng-ust-libc-wrapper/Makefile
599 src/lib/lttng-ust-pthread-wrapper/Makefile
600 src/lib/lttng-ust-tracepoint/Makefile
601 src/lib/lttng-ust/Makefile
602 src/lib/lttng-ust-python-agent/Makefile
604 src/lib/lttng-ust-ctl.pc
607 src/python-lttngust/lttngust/version.py
608 src/python-lttngust/Makefile
609 src/python-lttngust/setup.py
610 tests/benchmark/Makefile
611 tests/compile/api0/ctf-types/Makefile
612 tests/compile/api0/hello.cxx/Makefile
613 tests/compile/api0/hello/Makefile
614 tests/compile/api0/hello-many/Makefile
615 tests/compile/api0/Makefile
616 tests/compile/api0/same_line_tracepoint/Makefile
617 tests/compile/api1/ust-fields/Makefile
618 tests/compile/api1/hello.cxx/Makefile
619 tests/compile/api1/hello/Makefile
620 tests/compile/api1/hello-many/Makefile
621 tests/compile/api1/Makefile
622 tests/compile/api1/same_line_tracepoint/Makefile
623 tests/compile/api1/test-app-ctx/Makefile
624 tests/compile/Makefile
626 tests/regression/abi0-conflict/Makefile
627 tests/regression/Makefile
628 tests/unit/gcc-weak-hidden/Makefile
629 tests/unit/libmsgpack/Makefile
630 tests/unit/libringbuffer/Makefile
632 tests/unit/pthread_name/Makefile
633 tests/unit/snprintf/Makefile
634 tests/unit/ust-elf/Makefile
635 tests/unit/ust-error/Makefile
636 tests/unit/ust-utils/Makefile
645 ## Mini-report on what will be built. ##
653 AS_IF([test -n "ust_version_name"], [
654 AS_ECHO("${PPRINT_COLOR_BLDBLU}LTTng-ust $PACKAGE_VERSION \"ust_version_name\"$PPRINT_COLOR_RST")
656 AS_ECHO("${PPRINT_COLOR_BLDBLU}LTTng-ust $PACKAGE_VERSION")
661 AS_IF([test -n "ust_version_description"], [
662 AS_IF([test -n "$FOLD"], [
663 AS_ECHO(["ust_version_description"]) | $FOLD -s
665 AS_ECHO(["ust_version_description"])
670 PPRINT_SUBTITLE([System])
672 PPRINT_PROP_STRING([Target architecture], $host_cpu)
674 AS_IF([test "x$unsupported_arch" = "xyes"],[
675 PPRINT_WARN([Your architecture ($host_cpu) is unsupported, using safe default of no unaligned access.])
679 PPRINT_SUBTITLE([Features])
682 test "x$with_sdt" = "xyes" && value=1 || value=0
683 PPRINT_PROP_BOOL_CUSTOM([sdt.h integration], $value, [use --with-sdt])
685 AE_IS_FEATURE_ENABLED([java-agent-jul]) && value=1 || value=0
686 PPRINT_PROP_BOOL_CUSTOM([Java agent (JUL support)], $value, [use --enable-java-agent-jul])
688 AE_IS_FEATURE_ENABLED([java-agent-log4j]) && value=1 || value=0
689 PPRINT_PROP_BOOL_CUSTOM([Java agent (Log4j support)], $value, [use --enable-java-agent-log4j])
691 AE_IS_FEATURE_ENABLED([jni-interface]) && value=1 || value=0
692 PPRINT_PROP_BOOL_CUSTOM([JNI interface (JNI)], $value, [use --enable-jni-interface])
694 AE_IS_FEATURE_ENABLED([python-agent]) && value=1 || value=0
695 PPRINT_PROP_BOOL_CUSTOM([Python agent], $value, [use --enable-python-agent])
697 test "x$ac_cv_header_linux_perf_event_h" = "xyes" && value=1 || value=0
698 PPRINT_PROP_BOOL_CUSTOM([Perf event integration], $value)
700 AE_IS_FEATURE_ENABLED([numa]) && value=1 || value=0
701 PPRINT_PROP_BOOL([NUMA], $value)
706 AE_IS_FEATURE_ENABLED([examples]) && value=1 || value=0
707 PPRINT_PROP_BOOL([Build and install examples], $value, $PPRINT_COLOR_SUBTITLE)
709 # man pages build enabled/disabled
710 m4_pushdef([build_man_pages_msg], [Build and install man pages])
712 AE_IF_FEATURE_ENABLED([man-pages], [
714 PPRINT_PROP_BOOL([build_man_pages_msg], 1, $PPRINT_COLOR_SUBTITLE)
716 AS_IF([test "x$have_asciidoc_xmlto" = "xyes"], [
717 PPRINT_PROP_BOOL([build_man_pages_msg], 1, $PPRINT_COLOR_SUBTITLE)
719 PPRINT_PROP_STRING([build_man_pages_msg],
720 [${PPRINT_COLOR_BLDGRN}yes (already built)],
721 $PPRINT_COLOR_SUBTITLE)
725 PPRINT_PROP_BOOL([build_man_pages_msg], 0, $PPRINT_COLOR_SUBTITLE)
728 m4_popdef([build_man_pages_msg])
732 report_bindir="`eval eval echo $bindir`"
733 report_libdir="`eval eval echo $libdir`"
735 # Print the bindir and libdir this `make install' will install into.
737 PPRINT_SUBTITLE([Install directories])
738 PPRINT_PROP_STRING([Binaries], [$report_bindir])
739 PPRINT_PROP_STRING([Libraries], [$report_libdir])
742 PPRINT_SUBTITLE([System directories])
744 PPRINT_PROP_STRING([lttng-sessiond rundir], [$lttng_system_rundir])
748 AS_IF([test "x$warn_prebuilt_man_pages" = "xyes" ], [
751 Both asciidoc and xmlto are needed to build the LTTng-UST man pages.
753 Note that the man pages are already built in this distribution tarball,
754 therefore asciidoc and xmlto are only needed if you intend to modify
757 Use --disable-man-pages to completely disable building and installing
761 # vim: shiftwidth=2 softtabstop=2 expandtab