From: Victor Stinner Date: Wed, 24 May 2023 23:19:50 +0000 (+0200) Subject: gh-104773: Fix PY_STDLIB_MOD_SET_NA() on macOS (#104901) X-Git-Tag: v3.13.0a1~2044 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=dbcdbf1814b3df4c4e08e525b03384376598217d;p=thirdparty%2FPython%2Fcpython.git gh-104773: Fix PY_STDLIB_MOD_SET_NA() on macOS (#104901) The _scproxy is available on macOS: fix configure script. --- diff --git a/configure b/configure index 6b6cc090f771..ab35842179d4 100755 --- a/configure +++ b/configure @@ -25380,6 +25380,8 @@ case $ac_sys_system in #( py_cv_module_termios=n/a py_cv_module_grp=n/a ;; #( + Darwin) : + ;; #( CYGWIN*) : diff --git a/configure.ac b/configure.ac index 536deb975a3e..09e5eff2c533 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])],