Skip to content

Commit

Permalink
[3.11] pythongh-80532: Do not set ipv6type when cross-compiling (pyth…
Browse files Browse the repository at this point in the history
…onGH-17956)

(cherry picked from commit 5e1916b)

Co-authored-by: Zackery Spytz <[email protected]>
Co-authored-by: Xavier de Gaye <[email protected]>
  • Loading branch information
2 people authored and erlend-aasland committed Jan 5, 2024
1 parent 5da53d3 commit 9a7c791
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Do not set ipv6type when cross-compiling.
2 changes: 1 addition & 1 deletion configure

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -4273,7 +4273,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
Expand Down

0 comments on commit 9a7c791

Please sign in to comment.