package/x11r7/xserver_xorg-server: bump to version 1.19.3
[buildroot-gz.git] / package / python3 / 0004-Disable-buggy_getaddrinfo-configure-test-when-cross-.patch
blob3957041bf02bb580daf5e29f9828fe1d03685a66
1 From 449ac686b4c0f73bbbf0202c4a5689b5ddb37d53 Mon Sep 17 00:00:00 2001
2 From: Vanya Sergeev <vsergeev@gmail.com>
3 Date: Wed, 23 Dec 2015 11:30:33 +0100
4 Subject: [PATCH] Disable buggy_getaddrinfo configure test when cross-compiling
5 with IPv6 support
7 Signed-off-by: Vanya Sergeev <vsergeev@gmail.com>
8 ---
9 configure.ac | 2 +-
10 1 file changed, 1 insertion(+), 1 deletion(-)
12 diff --git a/configure.ac b/configure.ac
13 index db0e336..f57f2eb 100644
14 --- a/configure.ac
15 +++ b/configure.ac
16 @@ -3744,7 +3744,7 @@ fi
18 AC_MSG_RESULT($ac_cv_buggy_getaddrinfo)
20 -if test $have_getaddrinfo = no || test "$ac_cv_buggy_getaddrinfo" = yes
21 +if test $have_getaddrinfo = no || test "$cross_compiling" != "yes" -a "$ac_cv_buggy_getaddrinfo" = yes
22 then
23 if test $ipv6 = yes
24 then
25 --
26 2.7.4