From: Fred Drake Date: Fri, 6 Oct 2000 15:37:06 +0000 (+0000) Subject: Norman Vine : X-Git-Tag: v2.0c1~90 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=51d9036cc8cd9f0d4a9ee8f3efc5c100de301cec;p=thirdparty%2FPython%2Fcpython.git Norman Vine : tcp.h is not available on CygWin, so do not try to include it there. This closes SourceForge patch #101802. --- diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c index 284e5b78b2b2..658271342515 100644 --- a/Modules/socketmodule.c +++ b/Modules/socketmodule.c @@ -122,7 +122,7 @@ Socket methods: #include #include #include -#ifndef __BEOS__ +#if !(defined(__BEOS__) || defined(__CYGWIN__)) #include #endif