diff options
author | Guido van Rossum <guido@python.org> | 2000-09-19 00:46:46 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-09-19 00:46:46 (GMT) |
commit | 9e8181b809c0dc40f86d66ce7e51db83aaeccd20 (patch) | |
tree | 905b001aa2fe3c15cc51668151974dfb05dd51d4 /Include/Python.h | |
parent | 0344424793599e005b7071dd0338f508ac0d5168 (diff) | |
download | cpython-9e8181b809c0dc40f86d66ce7e51db83aaeccd20.zip cpython-9e8181b809c0dc40f86d66ce7e51db83aaeccd20.tar.gz cpython-9e8181b809c0dc40f86d66ce7e51db83aaeccd20.tar.bz2 |
Make better use of GNU Pth -- patch by Andy Dustman.
I can't test this, so I'm just checking it in with blind faith in Andy.
I've tested that it doesn't broeak a non-Pth build on Linux.
Changes include:
- There's a --with-pth configure option.
- Instead of _GNU_PTH, we test for HAVE_PTH.
- Better signal handling.
- (The config.h.in file is regenerated in a slightly different order.)
Diffstat (limited to 'Include/Python.h')
-rw-r--r-- | Include/Python.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/Python.h b/Include/Python.h index 46bfda2..153ba07 100644 --- a/Include/Python.h +++ b/Include/Python.h @@ -111,7 +111,7 @@ #define Py_file_input 257 #define Py_eval_input 258 -#ifdef _GNU_PTH +#ifdef HAVE_PTH /* GNU pth user-space thread support */ #include <pth.h> #endif |