Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] python: enabled IPv6 socket support
@ 2012-04-22 11:03 Vanya Sergeev
  2012-04-24 20:59 ` Peter Korsgaard
  0 siblings, 1 reply; 2+ messages in thread
From: Vanya Sergeev @ 2012-04-22 11:03 UTC (permalink / raw)
  To: buildroot

From: vsergeev <vsergeev@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@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@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

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [Buildroot] [PATCH] python: enabled IPv6 socket support
  2012-04-22 11:03 [Buildroot] [PATCH] python: enabled IPv6 socket support Vanya Sergeev
@ 2012-04-24 20:59 ` Peter Korsgaard
  0 siblings, 0 replies; 2+ messages in thread
From: Peter Korsgaard @ 2012-04-24 20:59 UTC (permalink / raw)
  To: buildroot

>>>>> "Vanya" == Vanya Sergeev <vsergeev@gmail.com> writes:

 Vanya> From: vsergeev <vsergeev@gmail.com>

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

Committed exept for the --enable-ipv6 part which is now handled
globally, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2012-04-24 20:59 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-04-22 11:03 [Buildroot] [PATCH] python: enabled IPv6 socket support Vanya Sergeev
2012-04-24 20:59 ` Peter Korsgaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox