Commits

Marcus Calhoun-Lopez authored 7fa6f8ed014
py-pyobjc-cocoa: allow 32-bit build on macOS Sierra

Fixes https://trac.macports.org/ticket/52743 On 64-bit systems, py-pyobjc-cocoa does not include pymactoolbox.h. It declares the parts it needs. On macOS Sierra, the same trick is needed on 32-bit systems.
No tags

python/py-pyobjc-cocoa/files/patch-python2-32mode.diff

Added
1 +--- Modules/_AppKit_carbon.m.orig 2014-01-15 09:02:32.000000000 -0700
2 ++++ Modules/_AppKit_carbon.m 2016-11-03 15:49:11.000000000 -0700
3 +@@ -5,20 +5,10 @@
4 +
5 + #if PY_MAJOR_VERSION == 2 && defined(USE_TOOLBOX_OBJECT_GLUE)
6 +
7 +-#ifndef __LP64__
8 +-
9 +-#include "pymactoolbox.h"
10 +-
11 +-#else
12 +- /* FIXME: the bits of pymactoolbox.h that we need,
13 +- * because said header doesn't work in 64-bit mode
14 +- */
15 + extern PyObject *WinObj_New(WindowPtr);
16 + extern int WinObj_Convert(PyObject *, WindowPtr *);
17 + extern PyObject *WinObj_WhichWindow(WindowPtr);
18 +
19 +-#endif
20 +-
21 + static int
22 + py2window(PyObject* obj, void* output)
23 + {

Everything looks good. We'll let you know here if there's anything you should know about.

Add shortcut