Skip to content

Commit

Permalink
pythongh-80532: Do not set ipv6type when cross-compiling (python#17956)
Browse files Browse the repository at this point in the history
Co-authored-by: Xavier de Gaye <xdegaye@gmail.com>
  • Loading branch information
ZackerySpytz and xdegaye authored Jan 5, 2024
1 parent e56c533 commit 5e1916b
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 @@ -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
Expand Down

0 comments on commit 5e1916b

Please sign in to comment.