[issue27979] Remove bundled libffi

2017-03-31 Thread Donald Stufft
Changes by Donald Stufft : -- pull_requests: +948 ___ Python tracker ___ ___

[issue27979] Remove bundled libffi

2016-09-23 Thread Chi Hsuan Yen
Chi Hsuan Yen added the comment: https://docs.python.org/3/license.html#libffi may need a change, too. -- ___ Python tracker ___

[issue27979] Remove bundled libffi

2016-09-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset d4981c76a8b9 by Zachary Ware in branch 'default': Closes #27979: Remove bundled copy of libffi https://hg.python.org/cpython/rev/d4981c76a8b9 -- nosy: +python-dev resolution: -> fixed stage: patch review -> resolved status: open -> closed

[issue27979] Remove bundled libffi

2016-09-10 Thread Chi Hsuan Yen
Changes by Chi Hsuan Yen : -- nosy: +Chi Hsuan Yen ___ Python tracker ___ ___

[issue27979] Remove bundled libffi

2016-09-07 Thread Zachary Ware
Zachary Ware added the comment: The patch will need to be updated to just completely remove the --with(out)-system-ffi check everywhere but OSX. It will also need to make some changes after the latest patch in #27976. -- ___ Python tracker

[issue27979] Remove bundled libffi

2016-09-06 Thread Zachary Ware
Changes by Zachary Ware : -- dependencies: +Deprecate building with bundled copy of libffi on non-Darwin POSIX platforms ___ Python tracker

[issue27979] Remove bundled libffi

2016-09-06 Thread Zachary Ware
New submission from Zachary Ware: The attached patch allows the bundled libffi used in non-Darwin POSIX builds (Modules/_ctypes/libffi, along with Modules/_ctypes/libffi.diff) to be removed. It depends on the patch in #27976, and does not affect OSX or Windows. -- components: Build,