From 095249fc8c972d95db304b29c52d9861d232f2cb Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Mon, 24 Apr 2000 15:06:51 +0000 Subject: [PATCH] Jack Jansen: Posix threads are now supported on the Macintosh too. --- Python/thread.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Python/thread.c b/Python/thread.c index 0f46223499c..fcaa10d783e 100644 --- a/Python/thread.c +++ b/Python/thread.c @@ -88,6 +88,10 @@ extern char *getenv(); #define SUN_LWP #endif +#ifdef __MWERKS__ +#define _POSIX_THREADS +#endif + #endif /* _POSIX_THREADS */ #ifdef __STDC__