You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It has had no effect on non-macOS platforms for a long time, and has had
the non-obvious effect of invoking `pkg_config` and not setting
`-DUSING_APPLE_OS_LIBFFI` on macOS since GH-22855.
AS_HELP_STRING([--with-system-ffi], [build _ctypes module using an installed ffi library, see Doc/library/ctypes.rst (default is system-dependent)]),,,)
3712
-
3713
-
if test "$ac_sys_system" = "Darwin"
3714
-
then
3715
-
case "$with_system_ffi" in
3716
-
"")
3717
-
with_system_ffi="no"
3718
-
;;
3719
-
yes|no)
3720
-
;;
3721
-
*)
3722
-
AC_MSG_ERROR([--with-system-ffi accepts no arguments])
3723
-
;;
3724
-
esac
3725
-
AC_MSG_RESULT($with_system_ffi)
3726
-
else
3727
-
AC_MSG_RESULT(yes)
3728
-
if test "$with_system_ffi" != ""
3729
-
then
3730
-
AC_MSG_WARN([--with(out)-system-ffi is ignored on this platform])
0 commit comments