diff options
author | Fabian Groffen <grobian@gentoo.org> | 2023-05-03 09:10:08 +0200 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2023-05-03 09:10:08 +0200 |
commit | 52f6711ecd0f318a2747e781302a81f8e61808c6 (patch) | |
tree | 288fadc7fa0f56d0b67162fb229e5927596090a1 /dev-lang/python/python-3.11.3.ebuild | |
parent | dev-lang/python-3.11.3: only pull in util-linux on Linux (diff) | |
download | prefix-52f6711ecd0f318a2747e781302a81f8e61808c6.tar.gz prefix-52f6711ecd0f318a2747e781302a81f8e61808c6.tar.bz2 prefix-52f6711ecd0f318a2747e781302a81f8e61808c6.zip |
dev-lang/python-3.11.3: drop _scproxy on Darwin
Fails to compile on at least Darwin 17 due to Framework header issues
that GCC points out. Gets too close to system headers, and system proxy
integration is not that important since we're CLI-oriented anyway.
Signed-off-by: Fabian Groffen <grobian@gentoo.org>
Diffstat (limited to 'dev-lang/python/python-3.11.3.ebuild')
-rw-r--r-- | dev-lang/python/python-3.11.3.ebuild | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/dev-lang/python/python-3.11.3.ebuild b/dev-lang/python/python-3.11.3.ebuild index 387aabcd88..05c62dbe9c 100644 --- a/dev-lang/python/python-3.11.3.ebuild +++ b/dev-lang/python/python-3.11.3.ebuild @@ -367,6 +367,7 @@ src_configure() { use readline || disable_modules+=( READLINE ) use tk || disable_modules+=( _TKINTER ) use kernel_linux || disable_modules+=( OSSAUDIODEV ) + [[ ${CHOST} == *-apple-darwin* ]] && disable_modules+=( _SCPROXY ) local mod for mod in "${disable_modules[@]}"; do |