diff options
author | Christian Heimes <christian@python.org> | 2021-11-20 09:18:48 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-20 09:18:48 (GMT) |
commit | 5596909eac4abdc9927c2e7751bea34fbcfdc624 (patch) | |
tree | 1dd04df859b59d224c59d5123fc6ca41697927b2 /configure.ac | |
parent | be36e0634060c7d5dee8e8876fb888bbb53d992a (diff) | |
download | cpython-5596909eac4abdc9927c2e7751bea34fbcfdc624.zip cpython-5596909eac4abdc9927c2e7751bea34fbcfdc624.tar.gz cpython-5596909eac4abdc9927c2e7751bea34fbcfdc624.tar.bz2 |
bpo-45847: Port _scproxy to PY_STDLIB_MOD (GH-29644)
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 754b066..9246597 100644 --- a/configure.ac +++ b/configure.ac @@ -6062,6 +6062,9 @@ PY_STDLIB_MOD_SIMPLE([_datetime], [], [$TIMEMODULE_LIB $LIBM]) dnl platform specific extensions PY_STDLIB_MOD([ossaudiodev], [], [test "$ac_cv_header_linux_soundcard_h" = yes -o "$ac_cv_header_sys_soundcard_h" = yes]) +PY_STDLIB_MOD([_scproxy], + [test "$ac_sys_system" = "Darwin"], [], + [], [-framework SystemConfiguration -framework CoreFoundation]) dnl _elementtree loads libexpat via CAPI hook in pyexpat PY_STDLIB_MOD([pyexpat], [], [], [$LIBEXPAT_CFLAGS], [$LIBEXPAT_LDFLAGS]) |