~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to config/ac-macros/dtrace.m4

  • Committer: Brian Aker
  • Date: 2008-07-22 17:19:24 UTC
  • Revision ID: brian@tangent.org-20080722171924-6wf69aguugtwfr72
Small cleanup around uint32 types (need to merge).

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
AC_ARG_ENABLE([dtrace],
5
5
    [AS_HELP_STRING([--enable-dtrace],
6
6
            [Build with support for the DTRACE. @<:@default=off@:>@])],
7
 
    [ENABLE_DTRACE="yes"],
8
 
    [ENABLE_DTRACE="no"])
9
 
 
10
 
if test "$ENABLE_DTRACE" = "yes"
11
 
then
12
 
  AC_DEFINE([HAVE_DTRACE], [1], [Enables DTRACE Support])
13
 
  AC_CHECK_PROGS(DTRACE, dtrace)
14
 
  AC_SUBST(DTRACEFLAGS)
15
 
  AC_SUBST(HAVE_DTRACE)
16
 
fi
17
 
AM_CONDITIONAL([BUILD_DTRACE], [ test "$ENABLE_DTRACE" = "yes" ])
 
7
    [ 
 
8
      AC_DEFINE([HAVE_DTRACE], [1], [Enables DTRACE Support])
 
9
      AC_CHECK_PROGS(DTRACE, dtrace)
 
10
      ENABLE_DTRACE="yes" 
 
11
      AC_SUBST(DTRACEFLAGS)
 
12
      AC_SUBST(HAVE_DTRACE)
 
13
    ],
 
14
    [
 
15
      ENABLE_DTRACE="no" 
 
16
    ]
 
17
    )
 
18
AM_CONDITIONAL([HAVE_DTRACE], [ test "$ENABLE_DTRACE" = "yes" ])
18
19
dnl ---------------------------------------------------------------------------
19
20
dnl End Macro: DTRACE_TEST
20
21
dnl ---------------------------------------------------------------------------