1
dnl ---------------------------------------------------------------------------
3
dnl ---------------------------------------------------------------------------
4
AC_ARG_ENABLE([dtrace],
5
[AS_HELP_STRING([--enable-dtrace],
6
[Build with support for the DTRACE. @<:@default=off@:>@])],
10
if test "$ENABLE_DTRACE" = "yes"
12
AC_DEFINE([HAVE_DTRACE], [1], [Enables DTRACE Support])
13
AC_CHECK_PROGS(DTRACE, dtrace)
17
AM_CONDITIONAL([HAVE_DTRACE], [ test "$ENABLE_DTRACE" = "yes" ])
18
dnl ---------------------------------------------------------------------------
19
dnl End Macro: DTRACE_TEST
20
dnl ---------------------------------------------------------------------------