[Python-checkins] python/dist/src/Modules socketmodule.c, 1.292, 1.293

aimacintyre at users.sourceforge.net aimacintyre at users.sourceforge.net
Wed Jul 7 16:03:03 CEST 2004


Update of /cvsroot/python/python/dist/src/Modules
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6295

Modified Files:
	socketmodule.c 
Log Message:
OS/2 EMX needs addrinfo.h for code included from getaddrinfo.c

Index: socketmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/socketmodule.c,v
retrieving revision 1.292
retrieving revision 1.293
diff -C2 -d -r1.292 -r1.293
*** socketmodule.c	28 Jun 2004 00:50:43 -0000	1.292
--- socketmodule.c	7 Jul 2004 14:02:59 -0000	1.293
***************
*** 280,283 ****
--- 280,287 ----
  #endif
  
+ #if defined(PYOS_OS2) && defined(PYCC_GCC)
+ #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