
report at bugs
Oct 25, 2007, 12:09 AM
Post #3 of 5
(239 views)
Permalink
|
|
[issue1324] r58034 breaks building _ctypes with the upstream libffi.
[In reply to]
|
|
Matthias Klose added the comment: Index: Modules/_ctypes/cfield.c =================================================================== --- Modules/_ctypes/cfield.c (revision 58651) +++ Modules/_ctypes/cfield.c (working copy) @@ -1753,6 +1753,9 @@ ffi_type ffi_type_float = { sizeof(float), FLOAT_ALIGN, FFI_TYPE_FLOAT }; ffi_type ffi_type_double = { sizeof(double), DOUBLE_ALIGN, FFI_TYPE_DOUBLE }; +#ifdef ffi_type_longdouble +#undef ffi_type_longdouble +#endif ffi_type ffi_type_longdouble = { sizeof(long double), LONGDOUBLE_ALIGN, FFI_TYPE_LONGDOUBLE }; __________________________________ Tracker <report [at] bugs> <http://bugs.python.org/issue1324> __________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/list-python-bugs%40lists.gossamer-threads.com
|