diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-08-10 00:22:01 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-08-10 00:22:01 (GMT) |
commit | e647b4766d93c8dc93f936047990f9e836adc229 (patch) | |
tree | 981b1f990058bed6184d6b31cb238544fe532493 /setup.py | |
parent | bd25d598a54dc57271e009918977815377babda0 (diff) | |
download | cpython-e647b4766d93c8dc93f936047990f9e836adc229.zip cpython-e647b4766d93c8dc93f936047990f9e836adc229.tar.gz cpython-e647b4766d93c8dc93f936047990f9e836adc229.tar.bz2 |
Fix buildbot issues due to _ctypes failing to compile in 3.1.
Recorded rollback of revisions 83837,83841 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1636,7 +1636,8 @@ class PyBuildExt(build_ext): '_ctypes/callbacks.c', '_ctypes/callproc.c', '_ctypes/stgdict.c', - '_ctypes/cfield.c'] + '_ctypes/cfield.c', + '_ctypes/malloc_closure.c'] depends = ['_ctypes/ctypes.h'] if sys.platform == 'darwin': |