From 65a2800734264d9aeb013faccf309ca044134580 Mon Sep 17 00:00:00 2001 From: James Peach Date: Mon, 6 Feb 2006 06:22:20 +0000 Subject: r13364: Continue not enabling valgrind on 64-bit Linux (see also rev 8510). (This used to be commit 13766b03e806528cdd34c9452f42ae4e71869671) --- source3/include/includes.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'source3/include/includes.h') diff --git a/source3/include/includes.h b/source3/include/includes.h index 8aa1003240..7e519aadc1 100644 --- a/source3/include/includes.h +++ b/source3/include/includes.h @@ -533,9 +533,11 @@ /* 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 || HAVE_VALGRIND_VALGRIND_H) +#if defined(DEVELOPER) && !defined(HAVE_64BIT_LINUX) +#if (HAVE_VALGRIND_H || HAVE_VALGRIND_VALGRIND_H) #define VALGRIND #endif +#endif /* we support ADS if we want it and have krb5 and ldap libs */ -- cgit