diff options
author | Linus Groh <mail@linusgroh.de> | 2021-04-01 18:16:12 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-04-01 22:49:44 +0200 |
commit | 563712abcef5ca791bdbc09c4a02931fd709c7c9 (patch) | |
tree | 9189de6e0d95bed79a15c3a6b68e731f974d9362 | |
parent | 0f468a5013f125c467e491cf58e74f769efc96e1 (diff) | |
download | serenity-563712abcef5ca791bdbc09c4a02931fd709c7c9.zip |
Ports: Build Python with --disable-ipv6
The addition of some IPv6 related things makes the configure script
think we support it now. We don't.
-rwxr-xr-x | Ports/python3/package.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ports/python3/package.sh b/Ports/python3/package.sh index c1b80a9c26..62d2b15ed7 100755 --- a/Ports/python3/package.sh +++ b/Ports/python3/package.sh @@ -17,7 +17,7 @@ auth_opts="Python-${version}.tar.xz.asc Python-${version}.tar.xz" depends="libffi zlib" # FIXME: --enable-optimizations results in lots of __gcov_* linker errors -configopts="--without-ensurepip ac_cv_file__dev_ptmx=no ac_cv_file__dev_ptc=no" +configopts="--disable-ipv6 --without-ensurepip ac_cv_file__dev_ptmx=no ac_cv_file__dev_ptc=no" export BLDSHARED="${CC} -shared" |