diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2001-10-15 14:34:42 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2001-10-15 14:34:42 (GMT) |
commit | 69c0ff38362dff3b0a90828b8d787dfb3eb14bc3 (patch) | |
tree | 8c6c2ac66e4a56cf8eba06ea42a417246b520e59 /pyconfig.h.in | |
parent | c0f1bfec05fcbd44390156f07008dc90f25ef487 (diff) | |
download | cpython-69c0ff38362dff3b0a90828b8d787dfb3eb14bc3.zip cpython-69c0ff38362dff3b0a90828b8d787dfb3eb14bc3.tar.gz cpython-69c0ff38362dff3b0a90828b8d787dfb3eb14bc3.tar.bz2 |
Do not define _POSIX_THREADS if unistd.h defines it.
Check for pthread_sigmask before using it. Fixes remaining problem in #470781.
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 749666f..7057895 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -477,6 +477,9 @@ /* Define if you have the pthread_init function. */ #undef HAVE_PTHREAD_INIT +/* Define if you have the pthread_sigmask function. */ +#undef HAVE_PTHREAD_SIGMASK + /* Define if you have the putenv function. */ #undef HAVE_PUTENV |