From: Benjamin Peterson Date: Fri, 16 Mar 2012 15:12:55 +0000 (-0500) Subject: fix condition (#14296) X-Git-Tag: v3.3.0a2~150 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2dbda07a1736270717ec194b90b11c7bf71b606c;p=thirdparty%2FPython%2Fcpython.git fix condition (#14296) --- diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 631201f2078c..03b3b9562549 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