From patchwork Wed Jan 9 07:20:21 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: site/common: deactivate a runtime check for ipv6-support in python >=2.7.1 that fails when cross-compiling Date: Wed, 09 Jan 2013 07:20:21 -0000 From: Lukas Bulwahn X-Patchwork-Id: 42355 Message-Id: <1357716021-22529-1-git-send-email-lukas.bulwahn@oss.bmw-carit.de> To: openembedded-core@lists.openembedded.org In configure there is a runtime check to determine buggy getaddrinfo and as we are cross-compiling this check goes wrong. If ipv6 is enabled in python, the failed test is reported as fatal error with the message Fatal: You must get working getaddrinfo() function. Setting ac_cv_buggy_getaddrinfo=no deactivates the runtime check and allows to compile python with ipv6 enabled. This commit was derived from the commit 700b75e7661062aa93cf81205b78c8bf7609922d in the Classic OpenEmbedded Development Tree. Signed-off-by: Lukas Bulwahn --- meta/site/common | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/site/common b/meta/site/common index 5da3ff4..1214a13 100644 --- a/meta/site/common +++ b/meta/site/common @@ -15,3 +15,5 @@ shadow_cv_utmpdir=${localstatedir}/run shadow_cv_logdir=${localstatedir}/log shadow_cv_passwd_dir=${bindir} +# python: deactivate a runtime check for ipv6-support in python >=2.7.1 that fails when cross-compiling +ac_cv_buggy_getaddrinfo=no