[pypy-svn] r28222 - pypy/dist/pypy/rpython/rctypes/socketmodule

hpk at codespeak.net hpk at codespeak.net
Sun Jun 4 11:28:40 CEST 2006


Author: hpk
Date: Sun Jun  4 11:28:39 2006
New Revision: 28222

Modified:
   pypy/dist/pypy/rpython/rctypes/socketmodule/ctypes_socket.py
Log:
an include was missing for OSX 10.3.6 or so


Modified: pypy/dist/pypy/rpython/rctypes/socketmodule/ctypes_socket.py
==============================================================================
--- pypy/dist/pypy/rpython/rctypes/socketmodule/ctypes_socket.py	(original)
+++ pypy/dist/pypy/rpython/rctypes/socketmodule/ctypes_socket.py	Sun Jun  4 11:28:39 2006
@@ -13,7 +13,8 @@
             'fcntl.h',
             'stdio.h',
             'netdb.h',
-            'arpa/inet.h'
+            'arpa/inet.h',
+            'stdint.h', 
             )
 HEADER = ''.join(['#include <%s>\n' % filename for filename in includes])
 constants = {}



More information about the Pypy-commit mailing list