diff options
author | Zackery Spytz <zspytz@gmail.com> | 2024-01-05 15:34:25 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-05 15:34:25 (GMT) |
commit | 5e1916ba1bf521d6ff9d2c553c057f3ef7008977 (patch) | |
tree | 0e3cc5859e7251a1d63f9778b0a8f221c60ef9aa /configure.ac | |
parent | e56c53334f1adf5b4ea940036c76d18e80fe809d (diff) | |
download | cpython-5e1916ba1bf521d6ff9d2c553c057f3ef7008977.zip cpython-5e1916ba1bf521d6ff9d2c553c057f3ef7008977.tar.gz cpython-5e1916ba1bf521d6ff9d2c553c057f3ef7008977.tar.bz2 |
gh-80532: Do not set ipv6type when cross-compiling (#17956)
Co-authored-by: Xavier de Gaye <xdegaye@gmail.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 6a80a5d..9587e6d 100644 --- a/configure.ac +++ b/configure.ac @@ -4367,7 +4367,7 @@ ipv6type=unknown ipv6lib=none ipv6trylibc=no -if test "$ipv6" = "yes"; then +if test "$ipv6" = yes -a "$cross_compiling" = no; then AC_MSG_CHECKING([ipv6 stack type]) for i in inria kame linux-glibc linux-inet6 solaris toshiba v6d zeta; do |