diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-11-24 12:53:38 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-11-24 12:53:38 (GMT) |
commit | 984890fcbbb2bb9d7168fd78a1383804593c3fd3 (patch) | |
tree | 6bfdaf51f6d170bca2fad95b42b2d1aabb0dfe25 /pyconfig.h.in | |
parent | 1518e8713d1e372284c653f254fb29cecc66d764 (diff) | |
download | cpython-984890fcbbb2bb9d7168fd78a1383804593c3fd3.zip cpython-984890fcbbb2bb9d7168fd78a1383804593c3fd3.tar.gz cpython-984890fcbbb2bb9d7168fd78a1383804593c3fd3.tar.bz2 |
Close #13415: Test in configure if unsetenv() has a return value or not.
Patch written by Charles-François Natali.
Diffstat (limited to 'pyconfig.h.in')
-rw-r--r-- | pyconfig.h.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pyconfig.h.in b/pyconfig.h.in index 2d1fd48..efe732f 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -95,6 +95,9 @@ /* define to 1 if your sem_getvalue is broken. */ #undef HAVE_BROKEN_SEM_GETVALUE +/* Define if `unsetenv` does not return an int. */ +#undef HAVE_BROKEN_UNSETENV + /* Define this if you have the type _Bool. */ #undef HAVE_C99_BOOL |