Skip to content

Commit

Permalink
pythongh-104773: Fix PY_STDLIB_MOD_SET_NA() on macOS (python#104901)
Browse files Browse the repository at this point in the history
The _scproxy is available on macOS: fix configure script.
  • Loading branch information
vstinner authored May 24, 2023
1 parent 6031727 commit dbcdbf1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions configure

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

2 changes: 2 additions & 0 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -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])],
Expand Down

0 comments on commit dbcdbf1

Please sign in to comment.