All pastes #2107178 Raw Edit

postgres check for dtrace

public text v1 · immutable
#2107178 ·published 2012-01-28 22:31 UTC
rendered paste body
actually no, this, from configure.in:

#
# DTrace
#
PGAC_ARG_BOOL(enable, dtrace, no,
              [build with DTrace support],
[AC_DEFINE([ENABLE_DTRACE], 1, 
           [Define to 1 to enable DTrace support. (--enable-dtrace)])
AC_CHECK_PROGS(DTRACE, dtrace)
if test -z "$DTRACE"; then
  AC_MSG_ERROR([dtrace not found])
fi
AC_SUBST(DTRACEFLAGS)])
AC_SUBST(enable_dtrace)