X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=configure.ac;h=6a6dfac047bd3be7707839b2448a5a4102fc775b;hp=cd1e0d152f6d6b16214eb84e536c442bc38a8a76;hb=0e636c80aae070dcb89850990053bf3711283340;hpb=487cf67c6435255ab3ede6dd8cd7678b8b4d1981 diff --git a/configure.ac b/configure.ac index cd1e0d152..6a6dfac04 100644 --- a/configure.ac +++ b/configure.ac @@ -4,7 +4,7 @@ AC_CANONICAL_TARGET AC_CANONICAL_HOST AC_CONFIG_MACRO_DIR([config]) AM_INIT_AUTOMAKE([foreign dist-bzip2 no-dist-gzip]) -AM_SILENT_RULES([yes]) +m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) AC_CONFIG_HEADERS([include/config.h]) @@ -14,6 +14,39 @@ AC_CHECK_HEADERS([ \ getopt.h sys/ipc.h sys/shm.h popt.h grp.h \ ]) +AC_ARG_WITH([consumerd32-path], + AS_HELP_STRING([--with-consumerd32-path], + [Location of the 32-bit consumerd executable]), + [CONSUMERD32_PATH="$withval"], + [CONSUMERD32_PATH='']) +AC_SUBST([CONSUMERD32_PATH]) + +AC_ARG_WITH([consumerd64-path], + AS_HELP_STRING([--with-consumerd64-path], + [Location of the 64-bit consumerd executable]), + [CONSUMERD64_PATH="$withval"], + [CONSUMERD64_PATH='']) +AC_SUBST([CONSUMERD64_PATH]) + +AC_ARG_WITH([consumerd32-libdir], + AS_HELP_STRING([--with-consumerd32-libdir], + [Location of the 32-bit consumerd libraries]), + [CONSUMERD32_LIBDIR="$withval"], + [CONSUMERD32_LIBDIR='']) +AC_SUBST([CONSUMERD32_LIBDIR]) + +AC_ARG_WITH([consumer64d-libdir], + AS_HELP_STRING([--with-consumerd64-libdir], + [Location of the 64-bit consumerd libraries]), + [CONSUMERD64_LIBDIR="$withval"], + [CONSUMERD64_LIBDIR='']) +AC_SUBST([CONSUMERD64_LIBDIR]) + +AC_DEFINE_UNQUOTED([CONFIG_CONSUMERD32_PATH], $CONSUMERD32_PATH, [Location of the 32-bit consumerd executable.]) +AC_DEFINE_UNQUOTED([CONFIG_CONSUMERD64_PATH], $CONSUMERD64_PATH, [Location of the 64-bit consumerd executable]) +AC_DEFINE_UNQUOTED([CONFIG_CONSUMERD32_LIBDIR], $CONSUMERD32_LIBDIR, [Search for consumerd 32-bit libraries in this location.]) +AC_DEFINE_UNQUOTED([CONFIG_CONSUMERD64_LIBDIR], $CONSUMERD64_LIBDIR, [Search for consumerd 64-bit libraries in this location.]) + # Check for pthread AC_CHECK_LIB([pthread], [pthread_create], [], [AC_MSG_ERROR([Cannot find libpthread. Use [LDFLAGS]=-Ldir to specify its location.])] @@ -53,7 +86,7 @@ AC_CHECK_DECL([caa_likely], [], # Check liblttng-ust-ctl library AC_ARG_ENABLE(lttng-ust, [ --disable-lttng-ust build without LTTng-UST (Userspace Tracing) support.], - lttng_ust_support=no, lttng_ust_support=yes) + lttng_ust_support=$enableval, lttng_ust_support=yes) [ if test "x$lttng_ust_support" = "xno"; then