X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=configure.ac;h=7934a5b27575ab6d7ed0f0cb1e74a8ba1128fa4b;hp=7f4912321a2ffb57d2a0b46ec99d81a46fa41668;hb=53a80697a772bc2e260e3dff006f910be6709f04;hpb=b8aa16822f579a6e15b41d2761801a0a65d5f2a5 diff --git a/configure.ac b/configure.ac index 7f4912321..7934a5b27 100644 --- a/configure.ac +++ b/configure.ac @@ -140,6 +140,20 @@ AC_CHECK_LIB([dl], [dlopen], AM_CONDITIONAL([LTTNG_TOOLS_BUILD_WITH_LIBDL], [test "x$have_libdl" = "xyes"]) AM_CONDITIONAL([LTTNG_TOOLS_BUILD_WITH_LIBC_DL], [test "x$have_libc_dl" = "xyes"]) +# Check for fmemopen +AC_CHECK_LIB([c], [fmemopen], +[ + AC_DEFINE_UNQUOTED([LTTNG_HAVE_FMEMOPEN], 1, [Has fmemopen support.]) +] +) + +# Check for open_memstream +AC_CHECK_LIB([c], [open_memstream], +[ + AC_DEFINE_UNQUOTED([LTTNG_HAVE_OPEN_MEMSTREAM], 1, [Has open_memstream support.]) +] +) + # Option to only build the consumer daemon and its libraries AC_ARG_WITH([consumerd-only], AS_HELP_STRING([--with-consumerd-only],[Only build the consumer daemon [default=no]]), @@ -162,6 +176,10 @@ AM_CONDITIONAL([COMPAT_EPOLL], [ test "$enable_epoll" = "yes" ]) AC_SYS_LARGEFILE AC_PROG_CC LT_INIT +AC_PROG_YACC +AC_PROG_LEX + +AC_DEFUN([AC_PROG_BISON], [AC_CHECK_PROGS(BISON, bison, bison)]) CFLAGS="-Wall $CFLAGS -g -fno-strict-aliasing" @@ -188,6 +206,7 @@ AC_CONFIG_FILES([ src/common/hashtable/Makefile src/common/sessiond-comm/Makefile src/common/compat/Makefile + src/common/relayd/Makefile src/lib/Makefile src/lib/lttng-ctl/Makefile src/bin/Makefile