diff options
author | Nicholas Bastin <nick.bastin@gmail.com> | 2004-03-21 23:45:42 (GMT) |
---|---|---|
committer | Nicholas Bastin <nick.bastin@gmail.com> | 2004-03-21 23:45:42 (GMT) |
commit | e62c5c88f179e5f6b445e40603ef7b7b2e706be9 (patch) | |
tree | 9ea49ad95d4e05d44177230f7791d35f3ee28f6d /pyconfig.h.in | |
parent | 3f60629242a13c9d5fb425294a33d22b7cf2b802 (diff) | |
download | cpython-e62c5c88f179e5f6b445e40603ef7b7b2e706be9.zip cpython-e62c5c88f179e5f6b445e40603ef7b7b2e706be9.tar.gz cpython-e62c5c88f179e5f6b445e40603ef7b7b2e706be9.tar.bz2 |
Added configure check for broken poll() on some unix systems (MacOS X 10.3)
Fixes SF Bug #850981
Diffstat (limited to 'pyconfig.h.in')
-rw-r--r-- | pyconfig.h.in | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/pyconfig.h.in b/pyconfig.h.in index e42f807..fd4a124 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -46,6 +46,9 @@ /* Define if nice() returns success/failure instead of the new priority. */ #undef HAVE_BROKEN_NICE +/* Define if poll() sets errno on invalid file descriptors. */ +#undef HAVE_BROKEN_POLL + /* Define if the Posix semaphores do not work on your system */ #undef HAVE_BROKEN_POSIX_SEMAPHORES @@ -435,6 +438,12 @@ /* Define to 1 if you have the <stdint.h> header file. */ #undef HAVE_STDINT_H +/* Define to 1 if you have the <stdlib.h> header file. */ +#undef HAVE_STDLIB_H + +/* Define to 1 if you have the `strdup' function. */ +#undef HAVE_STRDUP + /* Define to 1 if you have the `strerror' function. */ #undef HAVE_STRERROR @@ -444,6 +453,9 @@ /* Define to 1 if you have the <strings.h> header file. */ #undef HAVE_STRINGS_H +/* Define to 1 if you have the <string.h> header file. */ +#undef HAVE_STRING_H + /* Define to 1 if you have the <stropts.h> header file. */ #undef HAVE_STROPTS_H |