From b5daaed30d7c54ba1f516289f3a7a30a864133af Mon Sep 17 00:00:00 2001 From: Christian Heimes Date: Fri, 30 Nov 2007 23:34:21 +0000 Subject: Marc-Andre Lemburg has found the culprit of the problem in r57142. --- Modules/socketmodule.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/socketmodule.h b/Modules/socketmodule.h index 9c9b694602..b41a0405e1 100644 --- a/Modules/socketmodule.h +++ b/Modules/socketmodule.h @@ -8,7 +8,7 @@ # include # endif # include -# if defined(__CYGWIN__) || (defined(PYOS_OS2) && defined(PYCC_VACPP)) +# if !(defined(__CYGWIN__) || (defined(PYOS_OS2) && defined(PYCC_VACPP))) # include # endif -- cgit v1.2.1