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. Will backport.
This commit is contained in:
parent
73e7e058f5
commit
ef583a4992
|
@ -101,6 +101,8 @@ Core and builtins
|
|||
Library
|
||||
-------
|
||||
|
||||
- Bug #1563807: _ctypes built on AIX fails with ld ffi error.
|
||||
|
||||
- Bug #1598620: A ctypes Structure cannot contain itself.
|
||||
|
||||
- Patch #1362975: Rework CodeContext indentation algorithm to
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#ifdef __ppc__
|
||||
#if !(defined(__APPLE__) && !defined(__ppc__))
|
||||
/* -----------------------------------------------------------------------
|
||||
ffi.c - Copyright (c) 1998 Geoffrey Keating
|
||||
|
||||
|
|
Loading…
Reference in New Issue