summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-devtools/python/python-tornado/0001-disable-AI_ADDRCONFIG-flag.patch
diff options
context:
space:
mode:
authorKoen Kooi <koen@dominion.thruhere.net>2012-03-04 10:13:25 +0100
committerKoen Kooi <koen@dominion.thruhere.net>2012-03-04 10:27:16 +0100
commitbbbdd3acbc438cf652ee0cde8061189e52b0ae04 (patch)
tree6498efb01c72c75bae89d49c2ae7761f8626a061 /meta-oe/recipes-devtools/python/python-tornado/0001-disable-AI_ADDRCONFIG-flag.patch
parentfdff8697ea2db6254d26510adb7d11e6352d950f (diff)
downloadmeta-openembedded-bbbdd3acbc438cf652ee0cde8061189e52b0ae04.tar.gz
python-tornado: update to the 2.2 release
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'meta-oe/recipes-devtools/python/python-tornado/0001-disable-AI_ADDRCONFIG-flag.patch')
-rw-r--r--meta-oe/recipes-devtools/python/python-tornado/0001-disable-AI_ADDRCONFIG-flag.patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/recipes-devtools/python/python-tornado/0001-disable-AI_ADDRCONFIG-flag.patch b/meta-oe/recipes-devtools/python/python-tornado/0001-disable-AI_ADDRCONFIG-flag.patch
index a3efbcaac8..3c3ec7c853 100644
--- a/meta-oe/recipes-devtools/python/python-tornado/0001-disable-AI_ADDRCONFIG-flag.patch
+++ b/meta-oe/recipes-devtools/python/python-tornado/0001-disable-AI_ADDRCONFIG-flag.patch
@@ -24,7 +24,7 @@ index cfff0ba..c181f24 100644
24- # exist on some platforms (specifically WinXP, although 24- # exist on some platforms (specifically WinXP, although
25- # newer versions of windows have it) 25- # newer versions of windows have it)
26- flags |= socket.AI_ADDRCONFIG 26- flags |= socket.AI_ADDRCONFIG
27 for res in socket.getaddrinfo(address, port, family, socket.SOCK_STREAM, 27 for res in set(socket.getaddrinfo(address, port, family, socket.SOCK_STREAM,
28 0, flags): 28 0, flags):
29 af, socktype, proto, canonname, sockaddr = res 29 af, socktype, proto, canonname, sockaddr = res
30-- 30--