diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2006-10-27 06:42:27 +0000 |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2006-10-27 06:42:27 +0000 |
commit | 443ccc73f37ecdff058972cfff32f68ff3f50b3b (patch) | |
tree | 66a9950f0d1f073810fdcfb0ad299f472af3fe22 /Modules/_testcapimodule.c | |
parent | b5bc537c5eac8115c2bbc6e7ec75578632e2164c (diff) | |
download | cpython-git-443ccc73f37ecdff058972cfff32f68ff3f50b3b.tar.gz |
Check for values.h. Will backport.
Diffstat (limited to 'Modules/_testcapimodule.c')
-rw-r--r-- | Modules/_testcapimodule.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Modules/_testcapimodule.c b/Modules/_testcapimodule.c index 0236c838e0..c5068efed4 100644 --- a/Modules/_testcapimodule.c +++ b/Modules/_testcapimodule.c @@ -6,7 +6,9 @@ */ #include "Python.h" +#ifdef HAVE_VALUES_H #include <values.h> +#endif #include "structmember.h" #ifdef WITH_THREAD |