2003-05-13
2003-05-13 19:34:31 by Martin Stjernholm <mast@lysator.liu.se>
-
b8c5134c2bd9667f23849e04658d53185912258a
(11 lines)
(+6/-5)
[
Show
| Annotate
]
Branch: 7.9
Check for the valgrind header in a valgrind subdir.
Rev: src/configure.in:1.722
Rev: src/pike_memory.h:1.46
2:
|| This file is part of Pike. For copyright information see COPYRIGHT.
|| Pike is distributed under GPL, LGPL and MPL. See the file COPYING
|| for more information.
- || $Id: pike_memory.h,v 1.45 2003/04/26 15:35:40 agehall Exp $
+ || $Id: pike_memory.h,v 1.46 2003/05/13 19:34:31 mast Exp $
*/
#ifndef MEMORY_H
15: Inside #if defined(USE_VALGRIND) and #if defined(HAVE_MEMCHECK_H)
#ifdef HAVE_MEMCHECK_H
#include <memcheck.h>
+ #elif defined(HAVE_VALGRIND_MEMCHECK_H)
+ #include <valgrind/memcheck.h>
+ #elif defined(HAVE_VALGRIND_H)
+ #include <valgrind.h>
#endif
- #ifdef HAVE_VALGRIND_H
- #include <valgrind.h>
- #endif /* HAVE_VALGRIND_H */
-
+
/* No Access */
#define PIKE_MEM_NA(lvalue) do { \
PIKE_MEM_NA_RANGE(&(lvalue), sizeof (lvalue)); \