diff options
author | Trent Mick <trentm@activestate.com> | 2000-08-23 21:33:05 (GMT) |
---|---|---|
committer | Trent Mick <trentm@activestate.com> | 2000-08-23 21:33:05 (GMT) |
commit | 635f6fb0e9fade3c734d650951815682b08bbec2 (patch) | |
tree | e8e8cc921869651ba638995d534203797508f5e5 /acconfig.h | |
parent | b745a0481b8caff2b3ca9e90e48289f2f65f7b4f (diff) | |
download | cpython-635f6fb0e9fade3c734d650951815682b08bbec2.zip cpython-635f6fb0e9fade3c734d650951815682b08bbec2.tar.gz cpython-635f6fb0e9fade3c734d650951815682b08bbec2.tar.bz2 |
This patch partly (some stuff went in already) ports Python to Monterey.
- Fix bug in thread_pthread.h::PyThread_get_thread_ident() where
sizeof(pthread) < sizeof(long).
- Add 'configure' for:
- SIZEOF_PTHREAD is pthread_t can be included via <pthread.h>
- setting Monterey system name
- appropriate CC,LINKCC,LDSHARED,OPT, and CCSHARED for Monterey
- Add section in README for Monterey build
Diffstat (limited to 'acconfig.h')
-rw-r--r-- | acconfig.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -157,6 +157,9 @@ /* The number of bytes in a time_t. */ #undef SIZEOF_TIME_T +/* The number of bytes in a pthread_t. */ +#undef SIZEOF_PTHREAD_T + /* Defined to enable large file support when an off_t is bigger than a long and long long is available and at least as big as an off_t. You may need to add some flags for configuration and compilation to enable this mode. |