Author: christian.heimes Date: Sat Dec 1 00:34:21 2007 New Revision: 59251
Modified: python/branches/py3k/Modules/socketmodule.h Log: Marc-Andre Lemburg has found the culprit of the problem in r57142. Modified: python/branches/py3k/Modules/socketmodule.h ============================================================================== --- python/branches/py3k/Modules/socketmodule.h (original) +++ python/branches/py3k/Modules/socketmodule.h Sat Dec 1 00:34:21 2007 @@ -8,7 +8,7 @@ # include <sys/socket.h> # endif # include <netinet/in.h> -# if defined(__CYGWIN__) || (defined(PYOS_OS2) && defined(PYCC_VACPP)) +# if !(defined(__CYGWIN__) || (defined(PYOS_OS2) && defined(PYCC_VACPP))) # include <netinet/tcp.h> # endif _______________________________________________ Python-3000-checkins mailing list [email protected] http://mail.python.org/mailman/listinfo/python-3000-checkins
