diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-12-03 02:52:39 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-12-03 02:52:39 (GMT) |
commit | 91c12ebc3dc6472ea486ab5e4aa38139283d48ad (patch) | |
tree | 09790d65d1bd0daacc659f7fd32f44cfb9afc99a /pyconfig.h.in | |
parent | 0299d0d7f03653400a563e69d6d2e062cf47320a (diff) | |
download | cpython-91c12ebc3dc6472ea486ab5e4aa38139283d48ad.zip cpython-91c12ebc3dc6472ea486ab5e4aa38139283d48ad.tar.gz cpython-91c12ebc3dc6472ea486ab5e4aa38139283d48ad.tar.bz2 |
disable pymalloc tricks with the --with-valgrind option #2422
Patch from James Henstridge.
Diffstat (limited to 'pyconfig.h.in')
-rw-r--r-- | pyconfig.h.in | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/pyconfig.h.in b/pyconfig.h.in index fd58443..85d58d1 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -301,9 +301,6 @@ /* Define to 1 if you have the `getpeername' function. */ #undef HAVE_GETPEERNAME -/* Define to 1 if you have the `initgroups' function. */ -#undef HAVE_INITGROUPS - /* Define to 1 if you have the `getpgid' function. */ #undef HAVE_GETPGID @@ -358,6 +355,9 @@ /* Define if you have the 'inet_pton' function. */ #undef HAVE_INET_PTON +/* Define to 1 if you have the `initgroups' function. */ +#undef HAVE_INITGROUPS + /* Define to 1 if you have the <inttypes.h> header file. */ #undef HAVE_INTTYPES_H @@ -1061,6 +1061,9 @@ /* Define to profile with the Pentium timestamp counter */ #undef WITH_TSC +/* Define if you want pymalloc to be disabled when running under valgrind */ +#undef WITH_VALGRIND + /* Define to 1 if your processor stores words with the most significant byte first (like Motorola and SPARC, unlike Intel and VAX). */ #undef WORDS_BIGENDIAN |