[issue1464] inet_pton redefined while building with windows SDK 6.0

2007-11-20 Thread Christian Heimes
Christian Heimes added the comment: Fixed in py3k and soon to be fixed in trunk when my PCbuild9 directory is ready. -- resolution: accepted - fixed status: open - closed __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1464

[issue1464] inet_pton redefined while building with windows SDK 6.0

2007-11-19 Thread zouguangxian
New submission from zouguangxian: in Microsoft SDKs\Windows\v6.0A\Include\ws2tcpip.h, inet_pton was defined when NTDDI_VERSION = NTDDI_LONGHORN with the following lines: #if (NTDDI_VERSION = NTDDI_LONGHORN) WINSOCK_API_LINKAGE INT WSAAPI inet_pton( __inINT

[issue1464] inet_pton redefined while building with windows SDK 6.0

2007-11-19 Thread Christian Heimes
Christian Heimes added the comment: I've solved the issue in the py3k differently. I've checked for !(defined(_MSC_VER) _MSC_VER1499) but your check is better. Thanks! -- assignee: - tiran keywords: +patch, py3k nosy: +tiran priority: - normal resolution: - accepted versions: