From 2a9c2bb0fdcdc192b889f54fae10bc05aad939d1 Mon Sep 17 00:00:00 2001 From: Antoine Pitrou Date: Sat, 24 Oct 2009 20:43:49 +0000 Subject: [PATCH] Disable support for Irix threads --- Python/thread.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/Python/thread.c b/Python/thread.c index f5722a7f132..a839481b4f8 100644 --- a/Python/thread.c +++ b/Python/thread.c @@ -23,12 +23,6 @@ #include -#ifdef __sgi -#ifndef HAVE_PTHREAD_H /* XXX Need to check in configure.in */ -#undef _POSIX_THREADS -#endif -#endif - #include "pythread.h" #ifndef _POSIX_THREADS @@ -101,6 +95,7 @@ PyThread_init_thread(void) static size_t _pythread_stacksize = 0; #ifdef SGI_THREADS +#error SGI Irix threads are now unsupported, and code will be removed in 3.3. #include "thread_sgi.h" #endif