[pypy-commit] pypy default: Bah.

arigo noreply at buildbot.pypy.org
Tue Aug 23 13:18:23 CEST 2011


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r46725:f08b3d926362
Date: 2011-08-23 13:23 +0200
http://bitbucket.org/pypy/pypy/changeset/f08b3d926362/

Log:	Bah.

diff --git a/ctypes_configure/configure.py b/ctypes_configure/configure.py
--- a/ctypes_configure/configure.py
+++ b/ctypes_configure/configure.py
@@ -559,7 +559,9 @@
 C_HEADER = """
 #include <stdio.h>
 #include <stddef.h>   /* for offsetof() */
-#include <stdint.h>   /* FreeBSD: for uint64_t */
+#ifndef _WIN32
+#  include <stdint.h>   /* FreeBSD: for uint64_t */
+#endif
 
 void dump(char* key, int value) {
     printf("%s: %d\\n", key, value);


More information about the pypy-commit mailing list