| 1 | AC_PREREQ([2.64]) |
| 2 | AC_INIT([lttng-tools],[2.8.0-pre],[jeremie.galarneau@efficios.com],[],[https://lttng.org]) |
| 3 | |
| 4 | AC_CONFIG_HEADERS([include/config.h]) |
| 5 | AC_CONFIG_AUX_DIR([config]) |
| 6 | AC_CONFIG_MACRO_DIR([m4]) |
| 7 | |
| 8 | AC_CANONICAL_TARGET |
| 9 | AC_CANONICAL_HOST |
| 10 | |
| 11 | AM_INIT_AUTOMAKE([foreign dist-bzip2 no-dist-gzip tar-pax]) |
| 12 | AM_MAINTAINER_MODE([enable]) |
| 13 | |
| 14 | # Enable silent rules if available (Introduced in AM 1.11) |
| 15 | m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) |
| 16 | |
| 17 | # Checks for C compiler |
| 18 | AC_USE_SYSTEM_EXTENSIONS |
| 19 | AC_SYS_LARGEFILE |
| 20 | AC_PROG_CC |
| 21 | AC_PROG_CC_STDC |
| 22 | |
| 23 | # Checks for programs. |
| 24 | AC_PROG_GREP |
| 25 | AC_PROG_LEX |
| 26 | AC_PROG_MAKE_SET |
| 27 | AC_PROG_SED |
| 28 | AC_PROG_YACC |
| 29 | LT_INIT |
| 30 | |
| 31 | # Check for objcopy, required by the base address statedump and dynamic linker tests |
| 32 | AC_CHECK_TOOL([OBJCOPY], objcopy, no) |
| 33 | AS_IF([test "x$OBJCOPY" = xno], |
| 34 | [AC_MSG_WARN([Cannont find objcopy. The base address statedump and dynamic linker tests will be disabled. Install the binutils package to remediate this.])] |
| 35 | ) |
| 36 | AM_CONDITIONAL([HAVE_OBJCOPY], [test "x$OBJCOPY" != xno]) |
| 37 | |
| 38 | # Checks for typedefs, structures, and compiler characteristics. |
| 39 | AC_C_INLINE |
| 40 | AC_TYPE_INT32_T |
| 41 | AC_TYPE_INT64_T |
| 42 | AC_TYPE_MODE_T |
| 43 | AC_TYPE_OFF_T |
| 44 | AC_TYPE_PID_T |
| 45 | AC_TYPE_SIZE_T |
| 46 | AC_TYPE_SSIZE_T |
| 47 | AC_TYPE_UID_T |
| 48 | AC_TYPE_UINT16_T |
| 49 | AC_TYPE_UINT32_T |
| 50 | AC_TYPE_UINT64_T |
| 51 | AC_TYPE_UINT8_T |
| 52 | |
| 53 | AX_C___ATTRIBUTE__ |
| 54 | AS_IF([test "x$ax_cv___attribute__" = "xyes"], |
| 55 | [:], |
| 56 | [AC_MSG_ERROR([The compiler does not support __attribute__ extensions])]) |
| 57 | |
| 58 | AX_PTHREAD(,[AC_MSG_ERROR([Could not configure pthreads support])]) |
| 59 | LIBS="$PTHREAD_LIBS $LIBS" |
| 60 | CFLAGS="$CFLAGS $PTHREAD_CFLAGS" |
| 61 | CC="$PTHREAD_CC" |
| 62 | |
| 63 | AX_LIB_SOCKET_NSL |
| 64 | |
| 65 | # Compute minor/major/patchlevel version numbers |
| 66 | major_version=$(echo AC_PACKAGE_VERSION | $SED 's/^\([[0-9]]\)*\.[[0-9]]*\.[[0-9]]*.*$/\1/') |
| 67 | minor_version=$(echo AC_PACKAGE_VERSION | $SED 's/^[[0-9]]*\.\([[0-9]]*\)\.[[0-9]]*.*$/\1/') |
| 68 | patchlevel_version=$(echo AC_PACKAGE_VERSION | $SED 's/^[[0-9]]*\.[[0-9]]*\.\([[0-9]]*\).*$/\1/') |
| 69 | AC_SUBST([MAJOR_VERSION], [$major_version]) |
| 70 | AC_SUBST([MINOR_VERSION], [$minor_version]) |
| 71 | AC_SUBST([PATCHLEVEL_VERSION], [$patchlevel_version]) |
| 72 | AC_DEFINE_UNQUOTED([VERSION_MAJOR], $major_version, [LTTng-Tools major version number]) |
| 73 | AC_DEFINE_UNQUOTED([VERSION_MINOR], $minor_version, [LTTng-Tools minor version number]) |
| 74 | AC_DEFINE_UNQUOTED([VERSION_PATCHLEVEL], $patchlevel_version, [LTTng-Tools patchlevel version number]) |
| 75 | |
| 76 | version_name="Herbe à Détourne" |
| 77 | version_description='Brewed with unrestrained amounts of Citra hop, the Herbe à Détourne is a fantastic New World Tripel brewed by "Dieu du Ciel!". Aromas of mango, cantaloupe melon and passion fruit, combined with a controlled bitter finish, unite in making this smooth golden-orange beer stand apart.' |
| 78 | version_description_c=$(echo $version_description | $SED 's/"/\\"/g') |
| 79 | |
| 80 | AC_DEFINE_UNQUOTED([VERSION_NAME], ["$version_name"], "") |
| 81 | AC_DEFINE_UNQUOTED([VERSION_DESCRIPTION], ["$version_description_c"], "") |
| 82 | |
| 83 | # libtool link_all_deplibs fixup. See http://bugs.lttng.org/issues/321. |
| 84 | AC_ARG_ENABLE(libtool-linkdep-fixup, |
| 85 | AS_HELP_STRING([--disable-libtool-linkdep-fixup], |
| 86 | [disable the libtool fixup for linking all dependent libraries (link_all_deplibs)]), |
| 87 | libtool_fixup=$enableval, |
| 88 | libtool_fixup=yes) |
| 89 | |
| 90 | AS_IF([test "x$libtool_fixup" = "xyes"], |
| 91 | [ |
| 92 | libtool_m4="$srcdir/m4/libtool.m4" |
| 93 | libtool_flag_pattern=".*link_all_deplibs\s*,\s*\$1\s*)" |
| 94 | AC_MSG_CHECKING([for occurence(s) of link_all_deplibs = no in $libtool_m4]) |
| 95 | libtool_flag_pattern_count=$($GREP -c "$libtool_flag_pattern\s*=\s*no" $libtool_m4) |
| 96 | AS_IF([test $libtool_flag_pattern_count -ne 0], |
| 97 | [ |
| 98 | AC_MSG_RESULT([$libtool_flag_pattern_count]) |
| 99 | AC_MSG_WARN([the detected libtool will not link all dependencies, forcing link_all_deplibs = unknown]) |
| 100 | $SED -i "s/\($libtool_flag_pattern\)\s*=\s*no/\1=unknown/g" $libtool_m4 |
| 101 | ], |
| 102 | [ |
| 103 | AC_MSG_RESULT([none]) |
| 104 | ]) |
| 105 | ]) |
| 106 | |
| 107 | AM_CONDITIONAL([NO_SHARED], [test x$enable_shared = xno]) |
| 108 | |
| 109 | AC_CHECK_HEADERS([ \ |
| 110 | sys/types.h unistd.h fcntl.h string.h pthread.h limits.h \ |
| 111 | signal.h stdlib.h sys/un.h sys/socket.h stdlib.h stdio.h \ |
| 112 | getopt.h sys/ipc.h sys/shm.h popt.h grp.h arpa/inet.h \ |
| 113 | netdb.h netinet/in.h paths.h stddef.h sys/file.h sys/ioctl.h \ |
| 114 | sys/mount.h sys/param.h sys/time.h |
| 115 | ]) |
| 116 | |
| 117 | # Basic functions check |
| 118 | AC_CHECK_FUNCS([ \ |
| 119 | atexit bzero clock_gettime dup2 fdatasync fls ftruncate \ |
| 120 | gethostbyname gethostname getpagesize localtime_r memchr memset \ |
| 121 | mkdir munmap putenv realpath rmdir socket strchr strcspn strdup \ |
| 122 | strncasecmp strndup strnlen strpbrk strrchr strstr strtol strtoul \ |
| 123 | strtoull dirfd gethostbyname2 getipnodebyname \ |
| 124 | ]) |
| 125 | |
| 126 | # Babeltrace viewer check |
| 127 | AC_ARG_WITH([babeltrace-bin], |
| 128 | AS_HELP_STRING([--with-babeltrace-bin], |
| 129 | [Location of the babeltrace viewer executable (including the filename)]), |
| 130 | [BABELTRACE_BIN="$withval"], |
| 131 | [BABELTRACE_BIN='']) |
| 132 | AC_SUBST([BABELTRACE_BIN]) |
| 133 | |
| 134 | # lttv-gui |
| 135 | AC_ARG_WITH([lttv-gui-bin], |
| 136 | AS_HELP_STRING([--with-lttv-gui-bin], |
| 137 | [Location of the lttv GUI viewer executable (including the filename)]), |
| 138 | [LTTV_GUI_BIN="$withval"], |
| 139 | [LTTV_GUI_BIN='']) |
| 140 | AC_SUBST([LTTV_GUI_BIN]) |
| 141 | |
| 142 | AC_ARG_WITH([consumerd32-bin], |
| 143 | AS_HELP_STRING([--with-consumerd32-bin], |
| 144 | [Location of the 32-bit consumerd executable (including the filename)]), |
| 145 | [CONSUMERD32_BIN="$withval"], |
| 146 | [CONSUMERD32_BIN='']) |
| 147 | AC_SUBST([CONSUMERD32_BIN]) |
| 148 | |
| 149 | AC_ARG_WITH([consumerd64-bin], |
| 150 | AS_HELP_STRING([--with-consumerd64-bin], |
| 151 | [Location of the 64-bit consumerd executable (including the filename)]), |
| 152 | [CONSUMERD64_BIN="$withval"], |
| 153 | [CONSUMERD64_BIN='']) |
| 154 | AC_SUBST([CONSUMERD64_BIN]) |
| 155 | |
| 156 | AC_ARG_WITH([consumerd32-libdir], |
| 157 | AS_HELP_STRING([--with-consumerd32-libdir], |
| 158 | [Directory containing the 32-bit consumerd libraries]), |
| 159 | [CONSUMERD32_LIBDIR="$withval"], |
| 160 | [CONSUMERD32_LIBDIR='']) |
| 161 | AC_SUBST([CONSUMERD32_LIBDIR]) |
| 162 | |
| 163 | AC_ARG_WITH([consumerd64-libdir], |
| 164 | AS_HELP_STRING([--with-consumerd64-libdir], |
| 165 | [Directory containing the 64-bit consumerd libraries]), |
| 166 | [CONSUMERD64_LIBDIR="$withval"], |
| 167 | [CONSUMERD64_LIBDIR='']) |
| 168 | AC_SUBST([CONSUMERD64_LIBDIR]) |
| 169 | |
| 170 | AC_ARG_WITH([sessiond-bin], |
| 171 | AS_HELP_STRING([--with-sessiond-bin], |
| 172 | [Location of the sessiond executable (including the filename)]), |
| 173 | [SESSIOND_BIN="$withval"], |
| 174 | [SESSIOND_BIN='']) |
| 175 | AC_SUBST([SESSIOND_BIN]) |
| 176 | |
| 177 | AC_ARG_WITH([lttng-system-rundir], |
| 178 | AS_HELP_STRING([--with-lttng-system-rundir], |
| 179 | [Location of the system directory where the system-wide lttng-sessiond runtime files are kept. The default is "/var/run/lttng".]), |
| 180 | [LTTNG_SYSTEM_RUNDIR="$withval"], |
| 181 | [LTTNG_SYSTEM_RUNDIR="/var/run/lttng"]) |
| 182 | AC_SUBST([LTTNG_SYSTEM_RUNDIR]) |
| 183 | |
| 184 | AC_ARG_ENABLE([test-java-agent-jul], |
| 185 | [AS_HELP_STRING([--enable-test-java-agent-jul],[enable the LTTng UST Java agent JUL tests [default=no]])], |
| 186 | [test_java_agent_jul=$enableval], |
| 187 | [test_java_agent_jul=no] |
| 188 | ) |
| 189 | |
| 190 | AC_ARG_ENABLE([test-java-agent-log4j], |
| 191 | [AS_HELP_STRING([--enable-test-java-agent-log4j],[enable the LTTng UST Java agent Log4j tests [default=no]])], |
| 192 | [test_java_agent_log4j=$enableval], |
| 193 | [test_java_agent_log4j=no] |
| 194 | ) |
| 195 | |
| 196 | AC_ARG_ENABLE([test-java-agent-all], |
| 197 | [AS_HELP_STRING([--enable-test-java-agent-all],[enable all the LTTng UST Java agent tests [default=no]])], |
| 198 | [test_java_agent_jul=$enableval |
| 199 | test_java_agent_log4j=$enableval], |
| 200 | [:] |
| 201 | ) |
| 202 | |
| 203 | AC_DEFINE_UNQUOTED([CONFIG_CONSUMERD32_BIN], "$CONSUMERD32_BIN", [Location of the 32-bit consumerd executable.]) |
| 204 | AC_DEFINE_UNQUOTED([CONFIG_CONSUMERD64_BIN], "$CONSUMERD64_BIN", [Location of the 64-bit consumerd executable]) |
| 205 | AC_DEFINE_UNQUOTED([CONFIG_CONSUMERD32_LIBDIR], "$CONSUMERD32_LIBDIR", [Search for consumerd 32-bit libraries in this location.]) |
| 206 | AC_DEFINE_UNQUOTED([CONFIG_CONSUMERD64_LIBDIR], "$CONSUMERD64_LIBDIR", [Search for consumerd 64-bit libraries in this location.]) |
| 207 | AC_DEFINE_UNQUOTED([CONFIG_BABELTRACE_BIN], "$BABELTRACE_BIN", [Location of the babeltrace viewer executable.]) |
| 208 | AC_DEFINE_UNQUOTED([CONFIG_LTTV_GUI_BIN], "$LTTV_GUI_BIN", [Location of the lttv GUI viewer executable.]) |
| 209 | AC_DEFINE_UNQUOTED([CONFIG_SESSIOND_BIN], "$SESSIOND_BIN", [Location of the sessiond executable.]) |
| 210 | AC_DEFINE_UNQUOTED([CONFIG_LTTNG_SYSTEM_RUNDIR], ["$LTTNG_SYSTEM_RUNDIR"], [LTTng system runtime directory]) |
| 211 | |
| 212 | if test "x$prefix" = "xNONE"; then |
| 213 | prefix=$ac_default_prefix |
| 214 | fi |
| 215 | CONFDIR=`eval echo $sysconfdir` |
| 216 | AC_SUBST(CONFDIR) |
| 217 | AC_DEFINE_UNQUOTED([CONFIG_LTTNG_SYSTEM_CONFIGDIR],"$CONFDIR", [LTTng system configuration directory.]) |
| 218 | |
| 219 | AC_DEFINE_DIR([CONFIG_LTTNG_SYSTEM_DATADIR],[datadir], [LTTng system data directory.]) |
| 220 | |
| 221 | # |
| 222 | # Check for pthread |
| 223 | AC_CHECK_LIB([pthread], [pthread_create], [], |
| 224 | [AC_MSG_ERROR([Cannot find libpthread. Use LDFLAGS=-Ldir to specify its location.])] |
| 225 | ) |
| 226 | |
| 227 | # Check libpopt |
| 228 | PKG_CHECK_MODULES([POPT], [popt], |
| 229 | [LIBS="$LIBS $POPT_LIBS"], |
| 230 | [ |
| 231 | AC_MSG_WARN([pkg-config was unable to find a valid .pc for libpopt. Set PKG_CONFIG_PATH to specify the pkgconfig configuration file location]) |
| 232 | AC_MSG_WARN([Finding libpopt without pkg-config.]) |
| 233 | AC_CHECK_LIB([popt], |
| 234 | [poptGetContext], |
| 235 | [], |
| 236 | [ |
| 237 | AC_MSG_ERROR([Cannot find libpopt. Either set PKG_CONFIG_PATH to the configuration file location or use LDFLAGS=-Ldir to specify the library location]) |
| 238 | ] |
| 239 | ) |
| 240 | ] |
| 241 | ) |
| 242 | |
| 243 | AM_PATH_XML2(2.7.6, true, AC_MSG_ERROR(No supported version of libxml2 found.)) |
| 244 | |
| 245 | # Check for libuuid |
| 246 | PKG_CHECK_MODULES([UUID], [uuid], |
| 247 | [ |
| 248 | LIBS="$LIBS $UUID_LIBS" |
| 249 | AC_DEFINE_UNQUOTED([LTTNG_HAVE_LIBUUID], 1, [Has libuuid support.]) |
| 250 | have_libuuid=yes |
| 251 | ], |
| 252 | [ |
| 253 | AC_MSG_WARN([pkg-config was unable to find a valid .pc for libuuid. Set PKG_CONFIG_PATH to specify the pkgconfig configuration file location]) |
| 254 | AC_MSG_WARN([Finding libuuid without pkg-config.]) |
| 255 | AC_CHECK_LIB([uuid], |
| 256 | [uuid_generate], |
| 257 | [ |
| 258 | AC_DEFINE_UNQUOTED([LTTNG_HAVE_LIBUUID], 1, [Has libuuid support.]) |
| 259 | have_libuuid=yes |
| 260 | ], |
| 261 | [ |
| 262 | # libuuid not found, check for uuid_create in libc. |
| 263 | AC_CHECK_LIB([c], |
| 264 | [uuid_create], |
| 265 | [ |
| 266 | AC_DEFINE_UNQUOTED([LTTNG_HAVE_LIBC_UUID], 1, [Has libc uuid support.]) |
| 267 | have_libc_uuid=yes |
| 268 | ], |
| 269 | [ |
| 270 | AC_MSG_ERROR([Cannot find libuuid uuid_generate nor libc uuid_create. Either set PKG_CONFIG_PATH to the configuration file location or use LDFLAGS=-Ldir to specify the library location]) |
| 271 | ] |
| 272 | ) |
| 273 | ] |
| 274 | ) |
| 275 | ]) |
| 276 | AM_CONDITIONAL([LTTNG_BUILD_WITH_LIBUUID], [test "x$have_libuuid" = "xyes"]) |
| 277 | AM_CONDITIONAL([LTTNG_BUILD_WITH_LIBC_UUID], [test "x$have_libc_uuid" = "xyes"]) |
| 278 | |
| 279 | # URCU library version needed or newer |
| 280 | liburcu_version=">= 0.8.0" |
| 281 | |
| 282 | # Check liburcu needed function calls |
| 283 | AC_CHECK_DECL([cds_list_add], [], |
| 284 | [AC_MSG_ERROR([liburcu $liburcu_version or newer is needed])], [[#include <urcu/list.h>]] |
| 285 | ) |
| 286 | AC_CHECK_DECL([cds_wfcq_init], [], |
| 287 | [AC_MSG_ERROR([liburcu $liburcu_version or newer is needed])], [[#include <urcu/wfcqueue.h>]] |
| 288 | ) |
| 289 | AC_CHECK_DECL([cds_wfcq_dequeue_blocking], [], |
| 290 | [AC_MSG_ERROR([liburcu $liburcu_version or newer is needed])], [[#include <urcu/wfcqueue.h>]] |
| 291 | ) |
| 292 | AC_CHECK_DECL([futex_async], [], |
| 293 | [AC_MSG_ERROR([liburcu $liburcu_version or newer is needed])], [[#include <urcu/futex.h>]] |
| 294 | ) |
| 295 | AC_CHECK_DECL([rcu_thread_offline], [], |
| 296 | [AC_MSG_ERROR([liburcu $liburcu_version or newer is needed])], [[#include <urcu.h>]] |
| 297 | ) |
| 298 | AC_CHECK_DECL([rcu_thread_online], [], |
| 299 | [AC_MSG_ERROR([liburcu $liburcu_version or newer is needed])], [[#include <urcu.h>]] |
| 300 | ) |
| 301 | AC_CHECK_DECL([caa_likely], [], |
| 302 | [AC_MSG_ERROR([liburcu $liburcu_version or newer is needed])], [[#include <urcu.h>]] |
| 303 | ) |
| 304 | #Function added in urcu 0.7.0 |
| 305 | AC_CHECK_DECL([cmm_smp_mb__before_uatomic_or], [], |
| 306 | [AC_MSG_ERROR([liburcu $liburcu_version or newer is needed])], [[#include <urcu.h>]] |
| 307 | ) |
| 308 | |
| 309 | # Check kmod library |
| 310 | AC_ARG_WITH(kmod-prefix, |
| 311 | AS_HELP_STRING([--with-kmod-prefix=PATH], |
| 312 | [Specify the installation prefix of the kmod library. |
| 313 | Headers must be in PATH/include; libraries in PATH/lib.]), |
| 314 | [ |
| 315 | CPPFLAGS="$CPPFLAGS -I${withval}/include" |
| 316 | LDFLAGS="$LDFLAGS -L${withval}/lib64 -L${withval}/lib" |
| 317 | ]) |
| 318 | |
| 319 | AC_ARG_ENABLE(kmod, |
| 320 | AS_HELP_STRING([--disable-kmod],[build without kmod support]), |
| 321 | kmod_support=zz$enableval, kmod_support=yes) |
| 322 | |
| 323 | AS_IF([test "x$kmod_support" = "xyes"], [ |
| 324 | AC_CHECK_LIB([kmod], [kmod_module_probe_insert_module], |
| 325 | [ |
| 326 | AC_DEFINE([HAVE_KMOD], [1], [has kmod support]) |
| 327 | LIBS="$LIBS -lkmod" |
| 328 | kmod_found=yes |
| 329 | ], |
| 330 | kmod_found=no |
| 331 | ) |
| 332 | ]) |
| 333 | AM_CONDITIONAL([HAVE_KMOD], [test "x$kmod_found" = xyes]) |
| 334 | |
| 335 | AC_ARG_WITH(lttng-ust-prefix, |
| 336 | AS_HELP_STRING([--with-lttng-ust-prefix=PATH], |
| 337 | [Specify the installation prefix of the lttng-ust library. |
| 338 | Headers must be in PATH/include; libraries in PATH/lib.]), |
| 339 | [ |
| 340 | CPPFLAGS="$CPPFLAGS -I${withval}/include" |
| 341 | LDFLAGS="$LDFLAGS -L${withval}/lib64 -L${withval}/lib" |
| 342 | ]) |
| 343 | |
| 344 | # Check liblttng-ust-ctl library |
| 345 | AC_ARG_WITH(lttng-ust, |
| 346 | AS_HELP_STRING([--without-lttng-ust],[build without LTTng-UST (Userspace Tracing) support]), |
| 347 | lttng_ust_support=$withval, lttng_ust_support=yes) |
| 348 | |
| 349 | AS_IF([test "x$lttng_ust_support" = "xyes"], [ |
| 350 | AC_CHECK_LIB([lttng-ust-ctl], [ustctl_recv_channel_from_consumer], |
| 351 | [ |
| 352 | AC_DEFINE([HAVE_LIBLTTNG_UST_CTL], [1], [has LTTng-UST control support]) |
| 353 | lttng_ust_ctl_found=yes |
| 354 | ], |
| 355 | [AC_MSG_ERROR([Cannot find LTTng-UST >= 2.2.x. Use --with-lttng-ust-prefix=PREFIX to specify its location, or specify --without-lttng-ust to build lttng-tools without LTTng-UST support.])], |
| 356 | [-lurcu-common -lurcu-bp -lurcu-cds -lrt -ldl] |
| 357 | ) |
| 358 | ]) |
| 359 | AM_CONDITIONAL([HAVE_LIBLTTNG_UST_CTL], [test "x$lttng_ust_ctl_found" = xyes]) |
| 360 | AC_CHECK_FUNCS([sched_getcpu sysconf sync_file_range]) |
| 361 | |
| 362 | # check for dlopen |
| 363 | AC_CHECK_LIB([dl], [dlopen], |
| 364 | [ |
| 365 | have_libdl=yes |
| 366 | ], |
| 367 | [ |
| 368 | #libdl not found, check for dlopen in libc. |
| 369 | AC_CHECK_LIB([c], [dlopen], |
| 370 | [ |
| 371 | have_libc_dl=yes |
| 372 | ], |
| 373 | [ |
| 374 | AC_MSG_ERROR([Cannot find dlopen in libdl nor libc. Use [LDFLAGS]=-Ldir to specify their location.]) |
| 375 | ]) |
| 376 | ]) |
| 377 | AM_CONDITIONAL([LTTNG_TOOLS_BUILD_WITH_LIBDL], [test "x$have_libdl" = "xyes"]) |
| 378 | AM_CONDITIONAL([LTTNG_TOOLS_BUILD_WITH_LIBC_DL], [test "x$have_libc_dl" = "xyes"]) |
| 379 | |
| 380 | # Check for fmemopen |
| 381 | AC_CHECK_LIB([c], [fmemopen], |
| 382 | [ |
| 383 | AC_DEFINE_UNQUOTED([LTTNG_HAVE_FMEMOPEN], 1, [Has fmemopen support.]) |
| 384 | ] |
| 385 | ) |
| 386 | |
| 387 | # Check for open_memstream |
| 388 | AC_CHECK_LIB([c], [open_memstream], |
| 389 | [ |
| 390 | AC_DEFINE_UNQUOTED([LTTNG_HAVE_OPEN_MEMSTREAM], 1, [Has open_memstream support.]) |
| 391 | ] |
| 392 | ) |
| 393 | |
| 394 | AC_ARG_ENABLE([git-version], |
| 395 | [AC_HELP_STRING([--disable-git-version], |
| 396 | [Do not use the git version for the build])], |
| 397 | [have_git_version=$enableval], [have_git_version=yes] |
| 398 | ) |
| 399 | |
| 400 | AM_CONDITIONAL([LTTNG_TOOLS_BUILD_GIT_SOURCE], |
| 401 | [test "x${have_git_version}" = "xyes"]) |
| 402 | |
| 403 | # For Python |
| 404 | # SWIG version needed or newer: |
| 405 | swig_version=2.0.0 |
| 406 | |
| 407 | AC_ARG_ENABLE([python-bindings], |
| 408 | [AC_HELP_STRING([--enable-python-bindings], |
| 409 | [compile Python bindings])], |
| 410 | [enable_python_binding=yes], [enable_python_binding=no]) |
| 411 | |
| 412 | AM_CONDITIONAL([PYTHON_BINDING], [test "x${enable_python_binding:-yes}" = xyes]) |
| 413 | |
| 414 | if test "x${enable_python_binding:-yes}" = xyes; then |
| 415 | AX_PKG_SWIG($swig_version, [], [ AC_MSG_ERROR([SWIG $swig_version or newer is needed]) ]) |
| 416 | AM_PATH_PYTHON([3.0]) |
| 417 | |
| 418 | AC_ARG_VAR([PYTHON_INCLUDE], [Include flags for python, bypassing python-config]) |
| 419 | AC_ARG_VAR([PYTHON_CONFIG], [Path to python-config]) |
| 420 | AS_IF([test -z "$PYTHON_INCLUDE"], [ |
| 421 | AS_IF([test -z "$PYTHON_CONFIG"], [ |
| 422 | AC_PATH_PROGS([PYTHON_CONFIG], |
| 423 | [python$PYTHON_VERSION-config python-config], |
| 424 | [no], |
| 425 | [`dirname $PYTHON`]) |
| 426 | AS_IF([test "$PYTHON_CONFIG" = no], [AC_MSG_ERROR([cannot find python-config for $PYTHON. Do you have python-dev installed?])]) |
| 427 | ]) |
| 428 | AC_MSG_CHECKING([python include flags]) |
| 429 | PYTHON_INCLUDE=`$PYTHON_CONFIG --includes` |
| 430 | AC_MSG_RESULT([$PYTHON_INCLUDE]) |
| 431 | ]) |
| 432 | |
| 433 | else |
| 434 | AC_MSG_NOTICE([You may configure with --enable-python-bindings ]dnl |
| 435 | [if you want Python bindings.]) |
| 436 | |
| 437 | fi |
| 438 | |
| 439 | # Epoll check. If not present, the build will fallback on poll() API |
| 440 | AX_HAVE_EPOLL( |
| 441 | [AX_CONFIG_FEATURE_ENABLE(epoll)], |
| 442 | [AX_CONFIG_FEATURE_DISABLE(epoll)] |
| 443 | ) |
| 444 | AX_CONFIG_FEATURE( |
| 445 | [epoll], [This platform supports epoll(7)], |
| 446 | [HAVE_EPOLL], [This platform supports epoll(7).], |
| 447 | [enable_epoll="yes"], [enable_epoll="no"] |
| 448 | ) |
| 449 | AM_CONDITIONAL([COMPAT_EPOLL], [ test "$enable_epoll" = "yes" ]) |
| 450 | |
| 451 | AM_CONDITIONAL([TEST_JAVA_JUL_AGENT], [test "x$test_java_agent_jul" = "xyes"]) |
| 452 | AM_CONDITIONAL([TEST_JAVA_LOG4J_AGENT], [test "x$test_java_agent_log4j" = "xyes"]) |
| 453 | |
| 454 | if test "x$test_java_agent_jul" = "xyes" || test "x$test_java_agent_log4j" = "xyes"; then |
| 455 | AX_JAVA_OPTIONS |
| 456 | AX_PROG_JAVAC |
| 457 | AX_PROG_JAVA |
| 458 | AX_PROG_JAR |
| 459 | |
| 460 | AX_CHECK_CLASSPATH |
| 461 | |
| 462 | # Check for Java UST agent common class first |
| 463 | AX_CHECK_CLASS(org.lttng.ust.agent.AbstractLttngAgent) |
| 464 | if test "x$ac_cv_class_org_lttng_ust_agent_AbstractLttngAgent" = "xno"; then |
| 465 | AC_MSG_ERROR([The UST Java agent common class was not found. Please specify the location of the jar via the Java CLASSPATH e.g: export CLASSPATH="/path/to/lttng-ust-agent-common.jar"]) |
| 466 | fi |
| 467 | |
| 468 | if test "x$test_java_agent_jul" = "xyes"; then |
| 469 | # Check for JUL agent class |
| 470 | AX_CHECK_CLASS(org.lttng.ust.agent.jul.LttngLogHandler) |
| 471 | if test "x$ac_cv_class_org_lttng_ust_agent_jul_LttngLogHandler" = "xno"; then |
| 472 | AC_MSG_ERROR([The UST Java agent JUL class was not found. Please specify the location of the jar via the Java CLASSPATH e.g: export CLASSPATH="/path/to/lttng-ust-agent-jul.jar"]) |
| 473 | fi |
| 474 | fi |
| 475 | |
| 476 | if test "x$test_java_agent_log4j" = "xyes"; then |
| 477 | # Check for Log4j agent class |
| 478 | AX_CHECK_CLASS(org.lttng.ust.agent.log4j.LttngLogAppender) |
| 479 | if test "x$ac_cv_class_org_lttng_ust_agent_log4j_LttngLogAppender" = "xno"; then |
| 480 | AC_MSG_ERROR([The UST Java agent Log4j class was not found. Please specify the location of the jar via the Java CLASSPATH e.g: export CLASSPATH="/path/to/lttng-ust-agent-log4j.jar"]) |
| 481 | fi |
| 482 | |
| 483 | # Check for Log4j class |
| 484 | AX_CHECK_CLASS(org.apache.log4j.Logger) |
| 485 | if test "x$ac_cv_class_org_apache_log4j_Logger" = "xno"; then |
| 486 | AC_MSG_ERROR([The Log4j class was not found. Please specify the location of the jar via the Java CLASSPATH e.g: export CLASSPATH="/path/to/log4j.jar"]) |
| 487 | fi |
| 488 | fi |
| 489 | fi |
| 490 | |
| 491 | # Python agent test |
| 492 | UST_PYTHON_AGENT="lttngust" |
| 493 | |
| 494 | AC_ARG_ENABLE(test-python2-agent, |
| 495 | AS_HELP_STRING([--enable-test-python2-agent], |
| 496 | [enable tests for python2 agent. Python2 interpreter path can be overridden by setting the PYTHON2 environment variable. Default: Autodetect] |
| 497 | ),[:],[test_python2_agent_autodetect=yes] |
| 498 | ) |
| 499 | |
| 500 | AC_ARG_ENABLE(test-python3-agent, |
| 501 | AS_HELP_STRING([--enable-test-python3-agent], |
| 502 | [enable tests for python3 agent. Python3 interpreter path can be overridden by setting the PYTHON3 environment variable. Default: Autodetect] |
| 503 | ),[:],[test_python3_agent_autodetect=yes] |
| 504 | ) |
| 505 | |
| 506 | AC_ARG_ENABLE(test-python-agent-all, |
| 507 | AS_HELP_STRING([--enable-test-python-agent-all], |
| 508 | [enable test for all python{2/3} agent.] |
| 509 | ), |
| 510 | ) |
| 511 | |
| 512 | AS_IF([test ! -z "$enable_test_python_agent_all"], [ |
| 513 | unset test_python2_agent_autodetect |
| 514 | unset test_python3_agent_autodetect |
| 515 | ]) |
| 516 | |
| 517 | AS_IF([test "x$enable_test_python_agent_all" = "xyes"], [ |
| 518 | enable_test_python2_agent=yes |
| 519 | enable_test_python3_agent=yes |
| 520 | ]) |
| 521 | |
| 522 | AS_IF([test "x$enable_test_python_agent_all" = "xno"], [ |
| 523 | enable_test_python2_agent=no |
| 524 | enable_test_python3_agent=no |
| 525 | ]) |
| 526 | |
| 527 | |
| 528 | AS_IF([test "x$enable_test_python2_agent" = "xyes" -o "x$test_python2_agent_autodetect" = "xyes" ], [ |
| 529 | AS_IF([test -z "$PYTHON2"], [ |
| 530 | PYTHON2=python2 |
| 531 | ], [ |
| 532 | AC_MSG_WARN([Using user-defined PYTHON2 ($PYTHON2) for lttng-ust python2 agent check]) |
| 533 | ]) |
| 534 | |
| 535 | AC_PATH_PROG([PYTHON2_BIN],[$PYTHON2]) |
| 536 | AS_IF([test -z "$PYTHON2_BIN"], [ |
| 537 | AS_IF([test -z "$test_python2_agent_autodetect"],[ |
| 538 | AC_MSG_ERROR([No python2 interpreter found. PYTHON2 can be set to override default interpreter path]) |
| 539 | ]) |
| 540 | ], [ |
| 541 | AC_MSG_CHECKING([for python2 lttng-ust agent]) |
| 542 | AS_IF([$PYTHON2_BIN -c "import $UST_PYTHON_AGENT" 2>/dev/null], [ |
| 543 | PYTHON2_AGENT=$PYTHON2_BIN |
| 544 | AC_MSG_RESULT([yes]) |
| 545 | RUN_PYTHON_AGENT_TEST=yes |
| 546 | ], [ |
| 547 | AC_MSG_RESULT([no]) |
| 548 | AS_IF([test -z "$test_python2_agent_autodetect"],[ |
| 549 | AC_MSG_ERROR([No python2 agent found. The path to the agent can be specified by setting the PYTHONPATH environment variable.]) |
| 550 | ]) |
| 551 | ]) |
| 552 | |
| 553 | ]) |
| 554 | |
| 555 | ]) |
| 556 | |
| 557 | AS_IF([test "x$enable_test_python3_agent" = "xyes" -o "x$test_python3_agent_autodetect" = "xyes" ], [ |
| 558 | AS_IF([test -z "$PYTHON3"], [ |
| 559 | PYTHON3=python3 |
| 560 | ], [ |
| 561 | AC_MSG_WARN([Using user-defined PYTHON3 ($PYTHON3) for lttng-ust python3 agent check]) |
| 562 | ]) |
| 563 | |
| 564 | AC_PATH_PROG([PYTHON3_BIN],[$PYTHON3]) |
| 565 | AS_IF([test -z "$PYTHON3_BIN"], [ |
| 566 | AS_IF([test -z "$test_python3_agent_autodetect"],[ |
| 567 | AC_MSG_ERROR([No python3 interpreter found. PYTHON3 can be set to override default interpreter path]) |
| 568 | ]) |
| 569 | ], [ |
| 570 | AC_MSG_CHECKING([for python3 lttng-ust agent]) |
| 571 | AS_IF([$PYTHON3_BIN -c "import $UST_PYTHON_AGENT" 2>/dev/null], [ |
| 572 | PYTHON3_AGENT=$PYTHON3_BIN |
| 573 | AC_MSG_RESULT([yes]) |
| 574 | RUN_PYTHON_AGENT_TEST=yes |
| 575 | ], [ |
| 576 | AC_MSG_RESULT([no]) |
| 577 | AS_IF([test -z "$test_python3_agent_autodetect"],[ |
| 578 | AC_MSG_ERROR([No python3 agent found. The path to the agent can be specified by setting the PYTHONPATH environment variable.]) |
| 579 | ]) |
| 580 | ]) |
| 581 | |
| 582 | ]) |
| 583 | ]) |
| 584 | AC_SUBST([RUN_PYTHON_AGENT_TEST]) |
| 585 | AC_SUBST([PYTHON2_AGENT]) |
| 586 | AC_SUBST([PYTHON3_AGENT]) |
| 587 | |
| 588 | # Arguments for binaries build exclusion |
| 589 | AC_ARG_ENABLE([bin-lttng], AS_HELP_STRING([--disable-bin-lttng],[Disable the build of lttng binaries])) |
| 590 | AC_ARG_ENABLE([bin-lttng-consumerd], AS_HELP_STRING([--disable-bin-lttng-consumerd], |
| 591 | [Disable the build of lttng-consumerd binaries])) |
| 592 | AC_ARG_ENABLE([bin-lttng-crash], AS_HELP_STRING([--disable-bin-lttng-crash],[Disable the build of lttng-crash binaries])) |
| 593 | AC_ARG_ENABLE([bin-lttng-relayd], AS_HELP_STRING([--disable-bin-lttng-relayd], |
| 594 | [Disable the build of lttng-relayd binaries])) |
| 595 | AC_ARG_ENABLE([bin-lttng-sessiond], AS_HELP_STRING([--disable-bin-lttng-sessiond], |
| 596 | [Disable the build of lttng-sessiond binaries])) |
| 597 | AC_ARG_ENABLE([extras], AS_HELP_STRING([--disable-extras], |
| 598 | [Disable the build of the extra components])) |
| 599 | |
| 600 | |
| 601 | # Always build libconfig since it a dependency of libcommon |
| 602 | build_lib_config=yes |
| 603 | |
| 604 | build_lib_compat=no |
| 605 | build_lib_consumer=no |
| 606 | build_lib_hashtable=no |
| 607 | build_lib_health=no |
| 608 | build_lib_index=no |
| 609 | build_lib_kernel_consumer=no |
| 610 | build_lib_kernel_ctl=no |
| 611 | build_lib_lttng_ctl=no |
| 612 | build_lib_relayd=no |
| 613 | build_lib_sessiond_comm=no |
| 614 | build_lib_testpoint=no |
| 615 | build_lib_ust_consumer=no |
| 616 | |
| 617 | # There is an overlap for enabled dependencies, but this makes everything |
| 618 | # simpler. libcommon and libconfig are always compiled so they are not repeated |
| 619 | # here. |
| 620 | |
| 621 | # Enable binary dependencies. |
| 622 | AS_IF([test x$enable_bin_lttng != xno], |
| 623 | [ |
| 624 | build_lib_lttng_ctl=yes |
| 625 | ] |
| 626 | ) |
| 627 | |
| 628 | AS_IF([test x$enable_bin_lttng_consumerd != xno], |
| 629 | [ |
| 630 | build_lib_consumer=yes |
| 631 | build_lib_sessiond_comm=yes |
| 632 | build_lib_index=yes |
| 633 | build_lib_health=yes |
| 634 | build_lib_testpoint=yes |
| 635 | ] |
| 636 | ) |
| 637 | |
| 638 | AS_IF([test x$enable_bin_lttng_crash != xno], |
| 639 | # Do nothing since libconfig and libcommon are built by default. |
| 640 | [] |
| 641 | ) |
| 642 | |
| 643 | AS_IF([test x$enable_bin_lttng_relayd != xno], |
| 644 | [ |
| 645 | build_lib_lttng_ctl=yes |
| 646 | build_lib_sessiond_comm=yes |
| 647 | build_lib_hashtable=yes |
| 648 | build_lib_compat=yes |
| 649 | build_lib_index=yes |
| 650 | build_lib_health=yes |
| 651 | build_lib_testpoint=yes |
| 652 | ] |
| 653 | ) |
| 654 | AS_IF([test x$enable_bin_lttng_sessiond != xno], |
| 655 | [ |
| 656 | build_lib_lttng_ctl=yes |
| 657 | build_lib_sessiond_comm=yes |
| 658 | build_lib_kernel_ctl=yes |
| 659 | build_lib_hashtable=yes |
| 660 | build_lib_compat=yes |
| 661 | build_lib_relayd=yes |
| 662 | build_lib_testpoint=yes |
| 663 | build_lib_health=yes |
| 664 | build_lib_health=yes |
| 665 | ] |
| 666 | ) |
| 667 | |
| 668 | # Libraries dependencies enabling |
| 669 | AS_IF([test x$build_lib_lttng_ctl = xyes], |
| 670 | [ |
| 671 | build_lib_sessiond_comm=yes |
| 672 | build_lib_hashtable=yes |
| 673 | ] |
| 674 | ) |
| 675 | |
| 676 | AS_IF([test x$build_lib_consumer = xyes], |
| 677 | [ |
| 678 | build_lib_sessiond_comm=yes |
| 679 | build_lib_kernel_consumer=yes |
| 680 | build_lib_hashtable=yes |
| 681 | build_lib_compat=yes |
| 682 | build_lib_relayd=yes |
| 683 | AS_IF([test x$lttng_ust_ctl_found = xyes],[build_lib_ust_consumer=yes]) |
| 684 | ] |
| 685 | ) |
| 686 | |
| 687 | AS_IF([test x$build_lib_kernel_consumer = xyes], |
| 688 | [ |
| 689 | build_lib_kernel_ctl=yes |
| 690 | build_lib_relayd=yes |
| 691 | ] |
| 692 | ) |
| 693 | |
| 694 | AS_IF([test x$build_lib_relayd = xyes], |
| 695 | [ |
| 696 | build_lib_sessiond_comm=yes |
| 697 | ] |
| 698 | ) |
| 699 | |
| 700 | |
| 701 | # Export binaries build conditions. |
| 702 | AM_CONDITIONAL([BUILD_BIN_LTTNG], [test x$enable_bin_lttng != xno]) |
| 703 | AM_CONDITIONAL([BUILD_BIN_LTTNG_CONSUMERD], [test x$enable_bin_lttng_consumerd != xno]) |
| 704 | AM_CONDITIONAL([BUILD_BIN_LTTNG_CRASH], [test x$enable_bin_lttng_crash != xno]) |
| 705 | AM_CONDITIONAL([BUILD_BIN_LTTNG_RELAYD], [test x$enable_bin_lttng_relayd != xno]) |
| 706 | AM_CONDITIONAL([BUILD_BIN_LTTNG_SESSIOND], [test x$enable_bin_lttng_sessiond != xno]) |
| 707 | |
| 708 | # Export the tests and extras build conditions. |
| 709 | AS_IF([\ |
| 710 | test "x$enable_bin_lttng" != "xno" && \ |
| 711 | test "x$enable_bin_lttng_consumerd" != "xno" && \ |
| 712 | test "x$enable_bin_lttng_crash" != "xno" && \ |
| 713 | test "x$enable_bin_lttng_relayd" != "xno" && \ |
| 714 | test "x$enable_bin_lttng_sessiond" != "xno"], |
| 715 | [build_tests=yes], |
| 716 | [build_tests=no] |
| 717 | ) |
| 718 | |
| 719 | AM_CONDITIONAL([BUILD_TESTS], [test x$build_tests = xyes]) |
| 720 | AM_CONDITIONAL([BUILD_EXTRAS], [test x$enable_extras != xno]) |
| 721 | |
| 722 | # Export libraries build conditions. |
| 723 | AM_CONDITIONAL([BUILD_LIB_COMPAT], [test x$build_lib_compat = xyes]) |
| 724 | AM_CONDITIONAL([BUILD_LIB_CONFIG], [test x$build_lib_config = xyes]) |
| 725 | AM_CONDITIONAL([BUILD_LIB_CONSUMER], [test x$build_lib_consumer = xyes]) |
| 726 | AM_CONDITIONAL([BUILD_LIB_HASHTABLE], [test x$build_lib_hashtable = xyes]) |
| 727 | AM_CONDITIONAL([BUILD_LIB_HEALTH], [test x$build_lib_health = xyes]) |
| 728 | AM_CONDITIONAL([BUILD_LIB_INDEX], [test x$build_lib_index = xyes]) |
| 729 | AM_CONDITIONAL([BUILD_LIB_KERNEL_CONSUMER], [test x$build_lib_kernel_consumer = xyes]) |
| 730 | AM_CONDITIONAL([BUILD_LIB_KERNEL_CTL], [test x$build_lib_kernel_ctl = xyes]) |
| 731 | AM_CONDITIONAL([BUILD_LIB_LTTNG_CTL], [test x$build_lib_lttng_ctl = xyes]) |
| 732 | AM_CONDITIONAL([BUILD_LIB_RELAYD], [test x$build_lib_relayd = xyes]) |
| 733 | AM_CONDITIONAL([BUILD_LIB_SESSIOND_COMM], [test x$build_lib_sessiond_comm = xyes]) |
| 734 | AM_CONDITIONAL([BUILD_LIB_TESTPOINT], [test x$build_lib_testpoint = xyes]) |
| 735 | AM_CONDITIONAL([BUILD_LIB_UST_CONSUMER], [test x$build_lib_ust_consumer = xyes]) |
| 736 | |
| 737 | # check for pgrep |
| 738 | AC_PATH_PROG([PGREP], [pgrep], [no]) |
| 739 | AM_CONDITIONAL([HAS_PGREP], [test "x$PGREP" != "xno"]) |
| 740 | |
| 741 | if test ! -f "$srcdir/src/lib/lttng-ctl/filter/filter-parser.h"; then |
| 742 | if test x"$(basename "$YACC")" != "xbison -y"; then |
| 743 | AC_MSG_ERROR([[bison not found and is required when building from git. |
| 744 | Please install bison]]) |
| 745 | fi |
| 746 | AC_PATH_PROG([BISON],[bison]) |
| 747 | AX_PROG_BISON_VERSION([2.4], [],[ |
| 748 | AC_MSG_ERROR([[Bison >= 2.4 is required when building from git]]) |
| 749 | ]) |
| 750 | fi |
| 751 | |
| 752 | if test ! -f "$srcdir/src/lib/lttng-ctl/filter/filter-lexer.c"; then |
| 753 | if test x"$LEX" != "xflex"; then |
| 754 | AC_MSG_ERROR([[flex not found and is required when building from git. |
| 755 | Please install flex]]) |
| 756 | fi |
| 757 | AC_PATH_PROG([FLEX],[flex]) |
| 758 | AX_PROG_FLEX_VERSION([2.5.35], [],[ |
| 759 | AC_MSG_ERROR([[Flex >= 2.5.35 is required when building from git]]) |
| 760 | ]) |
| 761 | fi |
| 762 | |
| 763 | CFLAGS="-Wall $CFLAGS -g -fno-strict-aliasing" |
| 764 | |
| 765 | DEFAULT_INCLUDES="-I\$(top_srcdir) -I\$(top_builddir) -I\$(top_builddir)/src -I\$(top_builddir)/include -include config.h" |
| 766 | |
| 767 | lttngincludedir="${includedir}/lttng" |
| 768 | |
| 769 | AC_SUBST(lttngincludedir) |
| 770 | AC_SUBST(DEFAULT_INCLUDES) |
| 771 | |
| 772 | lttnglibexecdir="${libdir}/lttng/libexec" |
| 773 | AC_SUBST(lttnglibexecdir) |
| 774 | |
| 775 | AC_CONFIG_FILES([ |
| 776 | Makefile |
| 777 | doc/Makefile |
| 778 | doc/man/Makefile |
| 779 | include/Makefile |
| 780 | extras/Makefile |
| 781 | extras/bindings/Makefile |
| 782 | extras/bindings/swig/Makefile |
| 783 | extras/bindings/swig/python/Makefile |
| 784 | extras/core-handler/Makefile |
| 785 | src/Makefile |
| 786 | src/common/Makefile |
| 787 | src/common/kernel-ctl/Makefile |
| 788 | src/common/kernel-consumer/Makefile |
| 789 | src/common/consumer/Makefile |
| 790 | src/common/ust-consumer/Makefile |
| 791 | src/common/hashtable/Makefile |
| 792 | src/common/sessiond-comm/Makefile |
| 793 | src/common/compat/Makefile |
| 794 | src/common/relayd/Makefile |
| 795 | src/common/testpoint/Makefile |
| 796 | src/common/index/Makefile |
| 797 | src/common/health/Makefile |
| 798 | src/common/config/Makefile |
| 799 | src/lib/Makefile |
| 800 | src/lib/lttng-ctl/Makefile |
| 801 | src/lib/lttng-ctl/filter/Makefile |
| 802 | src/lib/lttng-ctl/lttng-ctl.pc |
| 803 | src/bin/Makefile |
| 804 | src/bin/lttng-consumerd/Makefile |
| 805 | src/bin/lttng-sessiond/Makefile |
| 806 | src/bin/lttng-relayd/Makefile |
| 807 | src/bin/lttng/Makefile |
| 808 | src/bin/lttng-crash/Makefile |
| 809 | tests/Makefile |
| 810 | tests/regression/Makefile |
| 811 | tests/regression/kernel/Makefile |
| 812 | tests/regression/tools/Makefile |
| 813 | tests/regression/tools/streaming/Makefile |
| 814 | tests/regression/tools/filtering/Makefile |
| 815 | tests/regression/tools/health/Makefile |
| 816 | tests/regression/tools/tracefile-limits/Makefile |
| 817 | tests/regression/tools/snapshots/Makefile |
| 818 | tests/regression/tools/live/Makefile |
| 819 | tests/regression/tools/exclusion/Makefile |
| 820 | tests/regression/tools/save-load/Makefile |
| 821 | tests/regression/tools/mi/Makefile |
| 822 | tests/regression/tools/wildcard/Makefile |
| 823 | tests/regression/tools/crash/Makefile |
| 824 | tests/regression/ust/Makefile |
| 825 | tests/regression/ust/nprocesses/Makefile |
| 826 | tests/regression/ust/high-throughput/Makefile |
| 827 | tests/regression/ust/low-throughput/Makefile |
| 828 | tests/regression/ust/before-after/Makefile |
| 829 | tests/regression/ust/buffers-pid/Makefile |
| 830 | tests/regression/ust/periodical-metadata-flush/Makefile |
| 831 | tests/regression/ust/multi-session/Makefile |
| 832 | tests/regression/ust/overlap/Makefile |
| 833 | tests/regression/ust/overlap/demo/Makefile |
| 834 | tests/regression/ust/linking/Makefile |
| 835 | tests/regression/ust/daemon/Makefile |
| 836 | tests/regression/ust/exit-fast/Makefile |
| 837 | tests/regression/ust/fork/Makefile |
| 838 | tests/regression/ust/libc-wrapper/Makefile |
| 839 | tests/regression/ust/baddr-statedump/Makefile |
| 840 | tests/regression/ust/ust-dl/Makefile |
| 841 | tests/regression/ust/java-jul/Makefile |
| 842 | tests/regression/ust/java-log4j/Makefile |
| 843 | tests/regression/ust/python-logging/Makefile |
| 844 | tests/regression/ust/getcpu-override/Makefile |
| 845 | tests/regression/ust/clock-override/Makefile |
| 846 | tests/regression/ust/type-declarations/Makefile |
| 847 | tests/stress/Makefile |
| 848 | tests/unit/Makefile |
| 849 | tests/unit/ini_config/Makefile |
| 850 | tests/utils/Makefile |
| 851 | tests/utils/tap/Makefile |
| 852 | tests/utils/testapp/Makefile |
| 853 | tests/utils/testapp/gen-ust-events/Makefile |
| 854 | tests/utils/testapp/gen-ust-nevents/Makefile |
| 855 | tests/utils/testapp/gen-ust-tracef/Makefile |
| 856 | ]) |
| 857 | |
| 858 | # Inject variable into python test script. |
| 859 | AC_CONFIG_FILES([tests/regression/ust/python-logging/test_python_logging],[chmod +x tests/regression/ust/python-logging/test_python_logging]) |
| 860 | |
| 861 | AC_OUTPUT |
| 862 | |
| 863 | # |
| 864 | # Mini-report on what will be built. |
| 865 | # |
| 866 | AS_ECHO() |
| 867 | |
| 868 | AS_ECHO("Version name: $version_name") |
| 869 | AS_ECHO("$version_description") |
| 870 | |
| 871 | AS_ECHO() |
| 872 | |
| 873 | # Target architecture we're building for. |
| 874 | target_arch=$host_cpu |
| 875 | [ |
| 876 | for f in $CFLAGS; do |
| 877 | if test $f = "-m32"; then |
| 878 | target_arch="32-bit" |
| 879 | elif test $f = "-m64"; then |
| 880 | target_arch="64-bit" |
| 881 | fi |
| 882 | done |
| 883 | ] |
| 884 | AS_ECHO_N("Target architecture: ") |
| 885 | AS_ECHO($target_arch) |
| 886 | |
| 887 | # kmod enabled/disabled |
| 888 | AS_ECHO_N("libkmod support: ") |
| 889 | AS_IF([test "x$kmod_found" = "xyes"],[ |
| 890 | AS_ECHO("Enabled") |
| 891 | ],[ |
| 892 | AS_ECHO("Disabled") |
| 893 | ]) |
| 894 | |
| 895 | # LTTng-UST enabled/disabled |
| 896 | AS_ECHO_N("Lttng-UST support: ") |
| 897 | AS_IF([test "x$lttng_ust_support" = "xyes"],[ |
| 898 | AS_ECHO("Enabled") |
| 899 | ],[ |
| 900 | AS_ECHO("Disabled") |
| 901 | ]) |
| 902 | |
| 903 | AS_ECHO() |
| 904 | AS_ECHO("Binaries:") |
| 905 | |
| 906 | # List binaries to be built |
| 907 | AS_ECHO_N("lttng: ") |
| 908 | AS_IF([test x$enable_bin_lttng != xno],[ |
| 909 | AS_ECHO("Enabled") |
| 910 | ],[ |
| 911 | AS_ECHO("Disabled") |
| 912 | ]) |
| 913 | |
| 914 | AS_ECHO_N("lttng-consumerd: ") |
| 915 | AS_IF([test x$enable_bin_lttng_consumerd != xno],[ |
| 916 | AS_ECHO("Enabled") |
| 917 | ],[ |
| 918 | AS_ECHO("Disabled") |
| 919 | ]) |
| 920 | |
| 921 | AS_ECHO_N("lttng-crash: ") |
| 922 | AS_IF([test x$enable_bin_lttng_crash != xno],[ |
| 923 | AS_ECHO("Enabled") |
| 924 | ],[ |
| 925 | AS_ECHO("Disabled") |
| 926 | ]) |
| 927 | |
| 928 | AS_ECHO_N("lttng-relayd: ") |
| 929 | AS_IF([test x$enable_bin_lttng_relayd != xno],[ |
| 930 | AS_ECHO("Enabled") |
| 931 | ],[ |
| 932 | AS_ECHO("Disabled") |
| 933 | ]) |
| 934 | |
| 935 | AS_ECHO_N("lttng-sessiond: ") |
| 936 | AS_IF([test x$enable_bin_lttng_sessiond != xno],[ |
| 937 | AS_ECHO("Enabled") |
| 938 | ],[ |
| 939 | AS_ECHO("Disabled") |
| 940 | ]) |
| 941 | |
| 942 | AS_ECHO_N("Extras: ") |
| 943 | AS_IF([test x$enable_extras != xno],[ |
| 944 | AS_ECHO("Enabled") |
| 945 | ],[ |
| 946 | AS_ECHO("Disabled") |
| 947 | ]) |
| 948 | |
| 949 | # Print the bindir and libdir this `make install' will install into. |
| 950 | AS_ECHO() |
| 951 | AS_ECHO_N("Binaries will be installed in: ") |
| 952 | AS_ECHO("`eval eval echo $bindir`") |
| 953 | AS_ECHO_N("Libraries will be installed in: ") |
| 954 | AS_ECHO("`eval eval echo $libdir`") |
| 955 | |
| 956 | |
| 957 | AS_ECHO() |
| 958 | |
| 959 | # Print clear message that tests won't be built |
| 960 | AS_IF([test "x$build_tests" = "xno"],[ |
| 961 | AS_ECHO("WARNING: Tests won't be built since some binaries were disabled") |
| 962 | ]) |
| 963 | |
| 964 | AS_ECHO("Tests:") |
| 965 | |
| 966 | # LTTng UST Java agent JUL tests enabled/disabled |
| 967 | AS_ECHO_N("LTTng-UST Java agent JUL tests: ") |
| 968 | AS_IF([test "x$test_java_agent_jul" = "xyes"],[ |
| 969 | AS_ECHO("Enabled") |
| 970 | ],[ |
| 971 | AS_ECHO("Disabled") |
| 972 | ]) |
| 973 | |
| 974 | # LTTng UST Java agent Log4j tests enabled/disabled |
| 975 | AS_ECHO_N("LTTng-UST Java agent Log4j tests: ") |
| 976 | AS_IF([test "x$test_java_agent_log4j" = "xyes"],[ |
| 977 | AS_ECHO("Enabled") |
| 978 | ],[ |
| 979 | AS_ECHO("Disabled") |
| 980 | ]) |
| 981 | |
| 982 | AS_ECHO_N("LTTng-UST Python2 agent tests: ") |
| 983 | AS_IF([test ! -z "$PYTHON2_AGENT"],[ |
| 984 | AS_ECHO("Enabled") |
| 985 | ],[ |
| 986 | AS_ECHO("Disabled") |
| 987 | ]) |
| 988 | |
| 989 | AS_ECHO_N("LTTng-UST Python3 agent tests: ") |
| 990 | AS_IF([test ! -z "$PYTHON3_AGENT"],[ |
| 991 | AS_ECHO("Enabled") |
| 992 | ],[ |
| 993 | AS_ECHO("Disabled") |
| 994 | ]) |
| 995 | |
| 996 | #Python binding enabled/disabled |
| 997 | AS_ECHO_N("Python binding: ") |
| 998 | AS_IF([test "x${enable_python_binding:-yes}" = xyes], [ |
| 999 | AS_ECHO("Enabled") |
| 1000 | ],[ |
| 1001 | AS_ECHO("Disabled") |
| 1002 | ]) |
| 1003 | |
| 1004 | # If we build the sessiond, print the paths it will use |
| 1005 | AS_ECHO() |
| 1006 | AS_ECHO_N("The lttng command will search for the lttng-sessiond executable at: ") |
| 1007 | AS_IF([test "$SESSIOND_BIN" = ""],[ |
| 1008 | AS_ECHO_N("`eval eval echo $bindir`") |
| 1009 | AS_ECHO("/lttng-sessiond") |
| 1010 | ],[ |
| 1011 | AS_ECHO("$SESSIOND_BIN") |
| 1012 | ]) |
| 1013 | |
| 1014 | AS_ECHO() |
| 1015 | AS_ECHO("The sessiond daemon will search the following directories: ") |
| 1016 | AS_ECHO_N("32-bit consumerd executable: ") |
| 1017 | AS_IF([test "$CONSUMERD32_BIN" = ""],[ |
| 1018 | AS_ECHO_N("`eval eval echo $lttnglibexecdir`") |
| 1019 | AS_ECHO("/lttng-consumerd") |
| 1020 | ],[ |
| 1021 | AS_ECHO("$CONSUMERD32_BIN") |
| 1022 | ]) |
| 1023 | |
| 1024 | AS_ECHO_N("32-bit consumer libraries: ") |
| 1025 | AS_IF([test "$CONSUMERD32_LIBDIR" = ""],[ |
| 1026 | AS_ECHO("`eval eval echo $libdir`") |
| 1027 | ],[ |
| 1028 | AS_ECHO("$CONSUMERD32_LIBDIR") |
| 1029 | ]) |
| 1030 | |
| 1031 | AS_ECHO_N("64-bit consumerd executable: ") |
| 1032 | AS_IF([test "$CONSUMERD64_BIN" = ""],[ |
| 1033 | AS_ECHO_N("`eval eval echo $lttnglibexecdir`") |
| 1034 | AS_ECHO("/lttng-consumerd") |
| 1035 | ],[ |
| 1036 | AS_ECHO("$CONSUMERD64_BIN") |
| 1037 | ]) |
| 1038 | |
| 1039 | AS_ECHO_N("64-bit consumer libraries: ") |
| 1040 | AS_IF([test "$CONSUMERD64_LIBDIR" = ""],[ |
| 1041 | AS_ECHO("`eval eval echo $libdir`") |
| 1042 | ],[ |
| 1043 | AS_ECHO("$CONSUMERD64_LIBDIR") |
| 1044 | ]) |
| 1045 | |
| 1046 | AS_ECHO() |
| 1047 | |