X-Git-Url: https://git.liburcu.org/?a=blobdiff_plain;f=configure.ac;h=978e3bc0ccd6ce1909d5e5597cbc70db9d9f5524;hb=e9cee23a2e92694ba1347fd1242026d4c19413a8;hp=4a0673e768535d1bc53be2c555e356cd209a8035;hpb=b67cd6f052bb21a3c3c72840a9e55598951ba632;p=lttng-tools.git diff --git a/configure.ac b/configure.ac index 4a0673e76..978e3bc0c 100644 --- a/configure.ac +++ b/configure.ac @@ -218,15 +218,17 @@ AC_CHECK_LIB([pthread], [pthread_create], [], ) # Check libpopt -AC_CHECK_LIB([popt], [poptGetContext], [], +PKG_CHECK_MODULES([POPT], [popt], + [LIBS="$LIBS $POPT_LIBS"], [AC_MSG_ERROR([Cannot find libpopt. Use [LDFLAGS]=-Ldir to specify its location.])] ) AM_PATH_XML2(2.7.6, true, AC_MSG_ERROR(No supported version of libxml2 found.)) # Check for libuuid -AC_CHECK_LIB([uuid], [uuid_generate], +PKG_CHECK_MODULES([UUID], [uuid], [ + LIBS="$LIBS $UUID_LIBS" AC_DEFINE_UNQUOTED([LTTNG_HAVE_LIBUUID], 1, [Has libuuid support.]) have_libuuid=yes ], @@ -313,7 +315,7 @@ AC_ARG_WITH(lttng-ust-prefix, # Check liblttng-ust-ctl library AC_ARG_WITH(lttng-ust, AS_HELP_STRING([--without-lttng-ust],[build without LTTng-UST (Userspace Tracing) support]), - lttng_ust_support=$enableval, lttng_ust_support=yes) + lttng_ust_support=$withval, lttng_ust_support=yes) AS_IF([test "x$lttng_ust_support" = "xyes"], [ AC_CHECK_LIB([lttng-ust-ctl], [ustctl_recv_channel_from_consumer], @@ -805,6 +807,8 @@ AC_CONFIG_FILES([ tests/regression/ust/exit-fast/Makefile tests/regression/ust/fork/Makefile tests/regression/ust/libc-wrapper/Makefile + tests/regression/ust/baddr-statedump/Makefile + tests/regression/ust/ust-dl/Makefile tests/regression/ust/java-jul/Makefile tests/regression/ust/java-log4j/Makefile tests/regression/ust/python-logging/Makefile