[Python-checkins] python/dist/src/Modules socketmodule.c, 1.297,
1.298
rhettinger at users.sourceforge.net
rhettinger at users.sourceforge.net
Tue Aug 3 10:52:48 CEST 2004
Update of /cvsroot/python/python/dist/src/Modules
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10000/Modules
Modified Files:
socketmodule.c
Log Message:
Restore compilation on MSVC++ 6.0
Index: socketmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/socketmodule.c,v
retrieving revision 1.297
retrieving revision 1.298
diff -C2 -d -r1.297 -r1.298
*** socketmodule.c 3 Aug 2004 05:06:26 -0000 1.297
--- socketmodule.c 3 Aug 2004 08:52:45 -0000 1.298
***************
*** 282,285 ****
--- 282,289 ----
#endif
+ #if defined(_MSC_VER) && _MSC_VER == 1200
+ #include "addrinfo.h"
+ #endif
+
#ifndef HAVE_INET_PTON
int inet_pton(int af, const char *src, void *dst);
More information about the Python-checkins
mailing list