From db6c567a720da3a71dd41671d4ceddf8300dc298 Mon Sep 17 00:00:00 2001 From: Antoine Pitrou Date: Sat, 24 Oct 2009 20:35:52 +0000 Subject: Disable GNU pth support --- Python/thread.c | 1 + 1 file changed, 1 insertion(+) (limited to 'Python/thread.c') diff --git a/Python/thread.c b/Python/thread.c index acb2103884..f5722a7f13 100644 --- a/Python/thread.c +++ b/Python/thread.c @@ -114,6 +114,7 @@ static size_t _pythread_stacksize = 0; #endif #ifdef HAVE_PTH +#error GNU pth threads are now unsupported, and code will be removed in 3.3. #include "thread_pth.h" #undef _POSIX_THREADS #endif -- cgit v1.2.1