commit | 095249fc8c972d95db304b29c52d9861d232f2cb | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Mon Apr 24 15:06:51 2000 +0000 |
committer | Guido van Rossum <guido@python.org> | Mon Apr 24 15:06:51 2000 +0000 |
tree | 6ef81732b9ecf6a51e3518b9ee37e2482e4352b9 | |
parent | 0f7bd3ce9fd4e78d4b1db60b68dff9442dc1b1ec [diff] |
Jack Jansen: Posix threads are now supported on the Macintosh too.
diff --git a/Python/thread.c b/Python/thread.c index 0f46223..fcaa10d 100644 --- a/Python/thread.c +++ b/Python/thread.c
@@ -88,6 +88,10 @@ #define SUN_LWP #endif +#ifdef __MWERKS__ +#define _POSIX_THREADS +#endif + #endif /* _POSIX_THREADS */ #ifdef __STDC__