From 94c297c4488ced4f580dd036a42f6718f072e57a Mon Sep 17 00:00:00 2001 From: vsergeev Date: Sun, 22 Apr 2012 01:03:16 +0000 Subject: python: enable IPv6 socket support Added patch to disable buggy_getaddrinfo test during configure when cross-compiling. [Peter: Remove --enable-ipv6 which is now handled globally] Signed-off-by: Vanya Sergeev Signed-off-by: Peter Korsgaard --- .../python/python-2.7-016-cross-compile-getaddrinfo.patch | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 package/python/python-2.7-016-cross-compile-getaddrinfo.patch (limited to 'package/python/python-2.7-016-cross-compile-getaddrinfo.patch') diff --git a/package/python/python-2.7-016-cross-compile-getaddrinfo.patch b/package/python/python-2.7-016-cross-compile-getaddrinfo.patch new file mode 100644 index 000000000..dae300577 --- /dev/null +++ b/package/python/python-2.7-016-cross-compile-getaddrinfo.patch @@ -0,0 +1,15 @@ +Disable buggy_getaddrinfo configure test when cross-compiling with IPv6 support + +Signed-off-by: Vanya Sergeev + +--- python-2.7.2.orig/configure.in 2012-04-22 06:52:09.361809545 -0400 ++++ python-2.7.2/configure.in 2012-04-22 06:56:37.900634194 -0400 +@@ -3128,7 +3128,7 @@ + + AC_MSG_RESULT($ac_cv_buggy_getaddrinfo) + +-if test $have_getaddrinfo = no -o "$ac_cv_buggy_getaddrinfo" = yes ++if test $have_getaddrinfo = no || test "$cross_compiling" != "yes" -a "$ac_cv_buggy_getaddrinfo" = yes + then + if test $ipv6 = yes + then -- cgit v1.2.3