From 6c0b872f85e0e4f0cdd873a4240d46e56396f628 Mon Sep 17 00:00:00 2001 From: Ronald Oussoren Date: Sun, 19 Apr 2009 10:38:20 +0000 Subject: [PATCH] Fix for issue5657. --- Include/pymacconfig.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Include/pymacconfig.h b/Include/pymacconfig.h index a8679af498f..b2cc0b74a78 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__) */