mirror of
https://github.com/python/cpython.git
synced 2025-12-31 04:23:37 +00:00
[3.12] gh-80532: Do not set ipv6type when cross-compiling (GH-17956) (#113740)
(cherry picked from commit 5e1916ba1b)
Co-authored-by: Zackery Spytz <zspytz@gmail.com>
Co-authored-by: Xavier de Gaye <xdegaye@gmail.com>
This commit is contained in:
parent
b95cebf2b6
commit
99d8dfd430
3 changed files with 3 additions and 2 deletions
|
|
@ -0,0 +1 @@
|
|||
Do not set ipv6type when cross-compiling.
|
||||
2
configure
generated
vendored
2
configure
generated
vendored
|
|
@ -16947,7 +16947,7 @@ ipv6type=unknown
|
|||
ipv6lib=none
|
||||
ipv6trylibc=no
|
||||
|
||||
if test "$ipv6" = "yes"; then
|
||||
if test "$ipv6" = yes -a "$cross_compiling" = no; then
|
||||
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking ipv6 stack type" >&5
|
||||
printf %s "checking ipv6 stack type... " >&6; }
|
||||
for i in inria kame linux-glibc linux-inet6 solaris toshiba v6d zeta;
|
||||
|
|
|
|||
|
|
@ -4540,7 +4540,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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue