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:
Thomas Heller 2006-11-28 20:21:54 +00:00
parent 73e7e058f5
commit ef583a4992
2 changed files with 3 additions and 1 deletions

View File

@ -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

View File

@ -1,4 +1,4 @@
#ifdef __ppc__
#if !(defined(__APPLE__) && !defined(__ppc__))
/* -----------------------------------------------------------------------
ffi.c - Copyright (c) 1998 Geoffrey Keating