1 Disable buggy_getaddrinfo configure test when cross-compiling with IPv6 support
3 Signed-off-by: Vanya Sergeev <vsergeev at gmail.com>
7 1 file changed, 1 insertion(+), 1 deletion(-)
9 Index: Python-3.3.0/configure.ac
10 ===================================================================
11 --- Python-3.3.0.orig/configure.ac
12 +++ Python-3.3.0/configure.ac
15 AC_MSG_RESULT($ac_cv_buggy_getaddrinfo)
17 -if test $have_getaddrinfo = no || test "$ac_cv_buggy_getaddrinfo" = yes
18 +if test $have_getaddrinfo = no || test "$cross_compiling" != "yes" -a "$ac_cv_buggy_getaddrinfo" = yes