mirror of https://github.com/python/cpython
gh-104773: Fix PY_STDLIB_MOD_SET_NA() on macOS (#104901)
The _scproxy is available on macOS: fix configure script.
This commit is contained in:
parent
6031727a37
commit
dbcdbf1814
|
@ -25380,6 +25380,8 @@ case $ac_sys_system in #(
|
|||
py_cv_module_termios=n/a
|
||||
py_cv_module_grp=n/a
|
||||
;; #(
|
||||
Darwin) :
|
||||
;; #(
|
||||
CYGWIN*) :
|
||||
|
||||
|
||||
|
|
|
@ -7064,6 +7064,8 @@ dnl VxWorks does not provide crypt() function
|
|||
AS_CASE([$ac_sys_system],
|
||||
[AIX], [PY_STDLIB_MOD_SET_NA([_scproxy])],
|
||||
[VxWorks*], [PY_STDLIB_MOD_SET_NA([_scproxy], [_crypt], [termios], [grp])],
|
||||
dnl The _scproxy module is available on macOS
|
||||
[Darwin], [],
|
||||
[CYGWIN*], [PY_STDLIB_MOD_SET_NA([_scproxy])],
|
||||
[QNX*], [PY_STDLIB_MOD_SET_NA([_scproxy])],
|
||||
[FreeBSD*], [PY_STDLIB_MOD_SET_NA([_scproxy])],
|
||||
|
|
Loading…
Reference in New Issue