From e3f4dd29a5a67e0e0b3c36baedb71c4f7f23b795 Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Mon, 28 Nov 2011 18:22:54 -0500 Subject: [PATCH] Introduce --with-consumer32-bindir and --with-consumer64-bindir Signed-off-by: Mathieu Desnoyers --- configure.ac | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 973b95080..aa185a6db 100644 --- a/configure.ac +++ b/configure.ac @@ -14,9 +14,21 @@ AC_CHECK_HEADERS([ \ getopt.h sys/ipc.h sys/shm.h popt.h grp.h \ ]) -AC_ARG_VAR([LTTNG_TOOLS_32BIT_BINDIR], [Search for LTTng Tools 32-bit binaries in this location.]) +AC_ARG_WITH([consumer32-bindir], + AC_HELP_STRING([--with-consumer32-bindir], + [Location of the 32-bit consumer executable]), + [LTTNG_TOOLS_32BIT_BINDIR="$withval"], + [LTTNG_TOOLS_32BIT_BINDIR='']) +AC_SUBST([LTTNG_TOOLS_32BIT_BINDIR]) + +AC_ARG_WITH([consumer64-bindir], + AC_HELP_STRING([--with-consumer64-bindir], + [Location of the 64-bit consumer executable]), + [LTTNG_TOOLS_64BIT_BINDIR="$withval"], + [LTTNG_TOOLS_64BIT_BINDIR='']) +AC_SUBST([LTTNG_TOOLS_64BIT_BINDIR]) + AC_DEFINE_UNQUOTED([CONFIG_32BIT_BINDIR], $LTTNG_TOOLS_32BIT_BINDIR, [Search for LTTng Tools 32-bit binaries in this location.]) -AC_ARG_VAR([LTTNG_TOOLS_64BIT_BINDIR], [Search for LTTng Tools 64-bit binaries in this location.]) AC_DEFINE_UNQUOTED([CONFIG_64BIT_BINDIR], $LTTNG_TOOLS_64BIT_BINDIR, [Search for LTTng Tools 64-bit binaries in this location.]) # Check for pthread -- 2.34.1