From 51d9036cc8cd9f0d4a9ee8f3efc5c100de301cec Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Fri, 6 Oct 2000 15:37:06 +0000 Subject: [PATCH] Norman Vine : tcp.h is not available on CygWin, so do not try to include it there. This closes SourceForge patch #101802. --- Modules/socketmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c index 284e5b78b2b..65827134251 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