Don't enable dtrace support when dtrace isn't available

Fixes FTBFS when dtrace isn't available but <sys/sdt.h> is.
This commit is contained in:
Emilio Pozuelo Monfort 2010-09-28 11:53:03 +02:00 committed by Ryan Lortie
parent 7c184df292
commit dd9f8b8cc6

View File

@ -2787,11 +2787,12 @@ if test "x$enable_dtrace" != xno; then
if test "x$enable_dtrace" = xyes; then if test "x$enable_dtrace" = xyes; then
AC_MSG_ERROR([dtrace not found]) AC_MSG_ERROR([dtrace not found])
fi fi
else
AC_CHECK_HEADER([sys/sdt.h],have_dtrace=yes,
[if test "x$enable_dtrace" = xyes; then
AC_MSG_ERROR([dtrace support needs sys/sdt.h header])
fi])
fi fi
AC_CHECK_HEADER([sys/sdt.h],have_dtrace=yes,
[if test "x$enable_dtrace" = xyes; then
AC_MSG_ERROR([dtrace support needs sys/sdt.h header])
fi])
fi fi
else else
AC_MSG_RESULT([no]) AC_MSG_RESULT([no])