diff options
author | Ronald Oussoren <ronaldoussoren@mac.com> | 2009-04-19 10:39:21 (GMT) |
---|---|---|
committer | Ronald Oussoren <ronaldoussoren@mac.com> | 2009-04-19 10:39:21 (GMT) |
commit | 8572e7ba16b8ca7166921fb7d8cd37b147dd2ff7 (patch) | |
tree | a91c23d3d785563ae43505c2209379ce1e110cab /Include | |
parent | fd2405415bb8adc656abcccae350f879647ab729 (diff) | |
download | cpython-8572e7ba16b8ca7166921fb7d8cd37b147dd2ff7.zip cpython-8572e7ba16b8ca7166921fb7d8cd37b147dd2ff7.tar.gz cpython-8572e7ba16b8ca7166921fb7d8cd37b147dd2ff7.tar.bz2 |
Merged revisions 71743 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r71743 | ronald.oussoren | 2009-04-19 12:38:20 +0200 (Sun, 19 Apr 2009) | 2 lines
Fix for issue5657.
........
Diffstat (limited to 'Include')
-rw-r--r-- | Include/pymacconfig.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Include/pymacconfig.h b/Include/pymacconfig.h index a8679af..b2cc0b7 100644 --- a/Include/pymacconfig.h +++ b/Include/pymacconfig.h @@ -67,6 +67,18 @@ #define WORDS_BIGENDIAN 1 #endif /* __BIG_ENDIAN */ + /* + * The definition in pyconfig.h is only valid on the OS release + * where configure ran on and not necessarily for all systems where + * the executable can be used on. + * + * Specifically: OSX 10.4 has limited supported for '%zd', while + * 10.5 has full support for '%zd'. A binary built on 10.5 won't + * work properly on 10.4 unless we surpress the definition + * of PY_FORMAT_SIZE_T + */ +#undef PY_FORMAT_SIZE_T + #endif /* defined(_APPLE__) */ |