From db19eea0616852eae6d23d0f7198cb44586da042 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Fri, 6 Oct 2000 15:48:38 +0000 Subject: Donn Cave : Do not assume that all platforms using a MetroWorks compiler can use POSIX threads; the assumption breaks on BeOS. This fix only helps for BeOS. This closes SourceForge patch #101772. --- Python/thread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python/thread.c') diff --git a/Python/thread.c b/Python/thread.c index f366a71ec7..b5d99ef4bd 100644 --- a/Python/thread.c +++ b/Python/thread.c @@ -58,7 +58,7 @@ extern char *getenv(const char *); #define SUN_LWP #endif -#ifdef __MWERKS__ +#if defined(__MWERKS__) && !defined(__BEOS__) #define _POSIX_THREADS #endif -- cgit v1.2.1