diff options
author | Victor Stinner <vstinner@python.org> | 2023-05-24 23:19:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-24 23:19:50 (GMT) |
commit | dbcdbf1814b3df4c4e08e525b03384376598217d (patch) | |
tree | c8bd5d6e71e45007b5830a0742d17b5dc9e4128b /configure.ac | |
parent | 6031727a37c6003f78e3b0c7414a0a214855dd08 (diff) | |
download | cpython-dbcdbf1814b3df4c4e08e525b03384376598217d.zip cpython-dbcdbf1814b3df4c4e08e525b03384376598217d.tar.gz cpython-dbcdbf1814b3df4c4e08e525b03384376598217d.tar.bz2 |
gh-104773: Fix PY_STDLIB_MOD_SET_NA() on macOS (#104901)
The _scproxy is available on macOS: fix configure script.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 536deb9..09e5eff 100644 --- a/configure.ac +++ b/configure.ac @@ -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])], |