X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=configure.ac;h=7934a5b27575ab6d7ed0f0cb1e74a8ba1128fa4b;hp=5ff12a6d9ee13231cfea67f0a88dc88857e87b84;hb=53a80697a772bc2e260e3dff006f910be6709f04;hpb=e371dbd99673ab96013dd34bef284be9ff9f88b0 diff --git a/configure.ac b/configure.ac index 5ff12a6d9..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]]), @@ -159,12 +173,17 @@ AX_CONFIG_FEATURE( ) 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" -DEFAULT_INCLUDES="-I\$(top_srcdir) -I\$(top_builddir) -I\$(top_builddir)/src -I\$(top_builddir)/include" +DEFAULT_INCLUDES="-I\$(top_srcdir) -I\$(top_builddir) -I\$(top_builddir)/src -I\$(top_builddir)/include -include config.h" lttngincludedir="${includedir}/lttng" @@ -187,11 +206,13 @@ 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 src/bin/lttng-consumerd/Makefile src/bin/lttng-sessiond/Makefile + src/bin/lttng-relayd/Makefile src/bin/lttng/Makefile tests/Makefile tests/kernel/Makefile