From cca61adcd242b96a1cf3c3b6528fd23a4998c2c3 Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Tue, 11 Mar 2003 05:57:53 +0000 Subject: If using --enable-developer and valgrind.h is present, define VALGRIND. (This used to be commit 71c8e90117f00f168416f2f35a1c25755e2d0ed4) --- source3/include/includes.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'source3/include') diff --git a/source3/include/includes.h b/source3/include/includes.h index 297f38ae97..7e5ad0e3cd 100644 --- a/source3/include/includes.h +++ b/source3/include/includes.h @@ -438,6 +438,14 @@ #include #endif +/* If we have --enable-developer and the valgrind header is present, + * then we're OK to use it. Set a macro so this logic can be done only + * once. */ +#if defined(DEVELOPER) && HAVE_VALGRIND_H +#define VALGRIND +#endif + + /* we support ADS if we want it and have krb5 and ldap libs */ #if defined(WITH_ADS) && defined(HAVE_KRB5) && defined(HAVE_LDAP) #define HAVE_ADS -- cgit