[pypy-commit] pypy stdlib-2.7.3: Try to fix translation error on Windows

amauryfa noreply at buildbot.pypy.org
Fri Sep 7 19:50:56 CEST 2012


Author: Amaury Forgeot d'Arc <amauryfa at gmail.com>
Branch: stdlib-2.7.3
Changeset: r57227:f4aaae64f90e
Date: 2012-09-07 19:05 +0200
http://bitbucket.org/pypy/pypy/changeset/f4aaae64f90e/

Log:	Try to fix translation error on Windows

diff --git a/pypy/rlib/rwin32.py b/pypy/rlib/rwin32.py
--- a/pypy/rlib/rwin32.py
+++ b/pypy/rlib/rwin32.py
@@ -17,7 +17,7 @@
 
 if WIN32:
     eci = ExternalCompilationInfo(
-        includes = ['windows.h'],
+        includes = ['windows.h', 'stdio.h'],
         libraries = ['kernel32'],
         )
 else:


More information about the pypy-commit mailing list