Commit 51d9036c authored by Fred Drake's avatar Fred Drake

Norman Vine <nhv@users.sourceforge.net>:

tcp.h is not available on CygWin, so do not try to include it there.

This closes SourceForge patch #101802.
parent 5d63a399
...@@ -122,7 +122,7 @@ Socket methods: ...@@ -122,7 +122,7 @@ Socket methods:
#include <netdb.h> #include <netdb.h>
#include <sys/socket.h> #include <sys/socket.h>
#include <netinet/in.h> #include <netinet/in.h>
#ifndef __BEOS__ #if !(defined(__BEOS__) || defined(__CYGWIN__))
#include <netinet/tcp.h> #include <netinet/tcp.h>
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment