summaryrefslogtreecommitdiffstats
path: root/Mac/Modules/ae
diff options
context:
space:
mode:
authorRonald Oussoren <ronaldoussoren@mac.com>2008-06-06 21:31:33 (GMT)
committerRonald Oussoren <ronaldoussoren@mac.com>2008-06-06 21:31:33 (GMT)
commit0d236eb05a80c088a15eb68d41eec7f3384dd76e (patch)
tree4979d4d29ec96f1375e1d29b0c8ae12f92189aef /Mac/Modules/ae
parent3f67c43f7874d1a27d11b6cf0240fb9bebbe90bf (diff)
downloadcpython-0d236eb05a80c088a15eb68d41eec7f3384dd76e.zip
cpython-0d236eb05a80c088a15eb68d41eec7f3384dd76e.tar.gz
cpython-0d236eb05a80c088a15eb68d41eec7f3384dd76e.tar.bz2
Fix build issue on OSX 10.4
Diffstat (limited to 'Mac/Modules/ae')
-rw-r--r--Mac/Modules/ae/_AEmodule.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/Mac/Modules/ae/_AEmodule.c b/Mac/Modules/ae/_AEmodule.c
index dd154c7..e12a30c 100644
--- a/Mac/Modules/ae/_AEmodule.c
+++ b/Mac/Modules/ae/_AEmodule.c
@@ -7,6 +7,10 @@
#include "pymactoolbox.h"
+#ifndef HAVE_OSX105_SDK
+typedef SInt32 SRefCon;
+#endif
+
/* Macro to test whether a weak-loaded CFM function exists */
#define PyMac_PRECHECK(rtn) do { if ( &rtn == NULL ) {\
PyErr_SetString(PyExc_NotImplementedError, \