diff options
| author | Peter Eisentraut <peter_e@gmx.net> | 2006-07-24 16:32:45 +0000 |
|---|---|---|
| committer | Peter Eisentraut <peter_e@gmx.net> | 2006-07-24 16:32:45 +0000 |
| commit | e9b49690627eb91106af3aa98d0fcc510de6538b (patch) | |
| tree | 2e878a58fbb23ace8f2cfe4758779a62869f1239 /configure.in | |
| parent | 9dc34b5feb73615d7371ef1c1b7c05b3146cc9a9 (diff) | |
| download | postgresql-e9b49690627eb91106af3aa98d0fcc510de6538b.tar.gz | |
DTrace support, with a small initial set of probes
by Robert Lor
Diffstat (limited to 'configure.in')
| -rw-r--r-- | configure.in | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 03b8f51d64..fe3cde3f6a 100644 --- a/configure.in +++ b/configure.in @@ -1,5 +1,5 @@ dnl Process this file with autoconf to produce a configure script. -dnl $PostgreSQL: pgsql/configure.in,v 1.468 2006/07/11 16:14:50 tgl Exp $ +dnl $PostgreSQL: pgsql/configure.in,v 1.469 2006/07/24 16:32:44 petere Exp $ dnl dnl Developers, please strive to achieve this order: dnl @@ -206,6 +206,17 @@ PGAC_ARG_BOOL(enable, debug, no, AC_SUBST(enable_debug) # +# DTrace +# +PGAC_ARG_BOOL(enable, dtrace, no, + [ --enable-dtrace build with DTrace support], +[AC_DEFINE([ENABLE_DTRACE], 1, + [Define to 1 to enable DTrace support. (--enable-dtrace)]) +AC_CHECK_PROGS(DTRACE, dtrace) +AC_SUBST(DTRACEFLAGS)]) +AC_SUBST(enable_dtrace) + +# # C compiler # |
