diff options
author | Ronald Oussoren <ronaldoussoren@mac.com> | 2010-01-17 16:25:57 (GMT) |
---|---|---|
committer | Ronald Oussoren <ronaldoussoren@mac.com> | 2010-01-17 16:25:57 (GMT) |
commit | a55af9a9db334fb587f2c6b37ac28ac2463ebf04 (patch) | |
tree | 085b4cb7df8d1b3c2890dd13851970cac2c070a0 /Misc | |
parent | 60ba2c8bf8d8457282232127fd13543af4956a3d (diff) | |
download | cpython-a55af9a9db334fb587f2c6b37ac28ac2463ebf04.zip cpython-a55af9a9db334fb587f2c6b37ac28ac2463ebf04.tar.gz cpython-a55af9a9db334fb587f2c6b37ac28ac2463ebf04.tar.bz2 |
- Issue #7658: Ensure that the new pythonw executable works on OSX 10.4
- Issue #7714: Use ``gcc -dumpversion`` to detect the version of GCC on
MacOSX.
- Make configure look for util.h as well as libutil.h. The former
is the header file that on OSX contains the defition of openpty.
(Needed to compile for OSX 10.4 on OSX 10.6)
- Use the correct definition of CC to compile the pythonw executable
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -66,10 +66,14 @@ Library Extension extra options may change the output without changing the .c file). Initial patch by Collin Winter. - Build ----- +- Issue #7658: Ensure that the new pythonw executable works on OSX 10.4 + +- Issue #7714: Use ``gcc -dumpversion`` to detect the version of GCC on + MacOSX. + - Issue #7661: Allow ctypes to be built from a non-ASCII directory path. Patch by Florent Xicluna. |