8000 gh-90005: Port _ctypes to PY_STDLIB_MOD by tiran · Pull Request #32229 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-90005: Port _ctypes to PY_STDLIB_MOD #32229

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 13 commits into from
Jun 26, 2022
Prev Previous commit
Next Next commit
Check for have_libffi
  • Loading branch information
tiran committed Jun 26, 2022
commit 4914c9e482b7032e340265601ef347f1ed7ddbbc
2 changes: 1 addition & 1 deletion configure

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -3625,7 +3625,7 @@ AS_VAR_IF([with_system_ffi], [yes], [
])
])

AS_VAR_IF([with_system_ffi], [yes], [
AS_VAR_IF([have_libffi], [yes], [
ctypes_malloc_closure=no
AS_CASE([$ac_sys_system],
[Darwin], [
Expand Down
0