Kaydet (Commit) 84a90cad authored tarafından Thomas Heller's avatar Thomas Heller

Fix #1563807: _ctypes built on AIX fails with ld ffi error.

The contents of ffi_darwin.c must be compiled unless __APPLE__ is
defined and __ppc__ is not.

Backport from trunk.
üst 425e2d15
...@@ -70,6 +70,8 @@ Core and builtins ...@@ -70,6 +70,8 @@ Core and builtins
Extension Modules Extension Modules
----------------- -----------------
- Bug #1563807: _ctypes built on AIX fails with ld ffi error.
- Bug #1598620: A ctypes Structure cannot contain itself. - Bug #1598620: A ctypes Structure cannot contain itself.
- Bug #1588217: don't parse "= " as a soft line break in binascii's - Bug #1588217: don't parse "= " as a soft line break in binascii's
......
#ifdef __ppc__ #if !(defined(__APPLE__) && !defined(__ppc__))
/* ----------------------------------------------------------------------- /* -----------------------------------------------------------------------
ffi.c - Copyright (c) 1998 Geoffrey Keating ffi.c - Copyright (c) 1998 Geoffrey Keating
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment