[Buildroot] [PATCH] python: enabled IPv6 socket support

Vanya Sergeev vsergeev at gmail.com
Sun Apr 22 11:03:16 UTC 2012


From: vsergeev <vsergeev at gmail.com>

Modified python package Makefile to pass the configure option for IPv6 socket
support if BR2_INET_IPV6 is set. Added patch to disable buggy_getaddrinfo test
during configure when cross-compiling.

Signed-off-by: Vanya Sergeev <vsergeev at gmail.com>
---
 .../python-2.7-016-cross-compile-getaddrinfo.patch      |   15 +++++++++++++++
 package/python/python.mk                                |    4 ++++
 2 files changed, 19 insertions(+)
 create mode 100644 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 0000000..dae3005
--- /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 <vsergeev at gmail.com>
+
+--- 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
diff --git a/package/python/python.mk b/package/python/python.mk
index 28e215c..705cb80 100644
--- a/package/python/python.mk
+++ b/package/python/python.mk
@@ -55,6 +55,10 @@ HOST_PYTHON_DEPENDENCIES = host-expat host-zlib
 
 PYTHON_INSTALL_STAGING = YES
 
+ifeq ($(BR2_INET_IPV6),y)
+PYTHON_CONF_OPT += --enable-ipv6
+endif
+
 ifeq ($(BR2_PACKAGE_PYTHON_READLINE),y)
 PYTHON_DEPENDENCIES += readline
 endif
-- 
1.7.10



More information about the buildroot mailing list