From 2dbda07a1736270717ec194b90b11c7bf71b606c Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Fri, 16 Mar 2012 10:12:55 -0500 Subject: [PATCH] fix condition (#14296) --- Modules/posixmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 631201f2078..03b3b956254 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -107,7 +107,7 @@ corresponding Unix manual entries for more information on calls."); #include #endif -#if defined(CPU_ALLOC) && defined(HAVE_SCHED_SETAFFINITY) +#if !defined(CPU_ALLOC) && defined(HAVE_SCHED_SETAFFINITY) #undef HAVE_SCHED_SETAFFINITY #endif