[issue16295] With VS2010 the select extension links against wsock32 instead of ws2_32

2012-10-24 Thread Richard Oudkerk
Changes by Richard Oudkerk shibt...@gmail.com: -- resolution: - fixed stage: needs patch - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16295 ___

[issue16295] With VS2010 the select extension links against wsock32 instead of ws2_32

2012-10-22 Thread Kristján Valur Jónsson
Kristján Valur Jónsson added the comment: See this patch. -- keywords: +patch Added file: http://bugs.python.org/file27659/select.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16295

[issue16295] With VS2010 the select extension links against wsock32 instead of ws2_32

2012-10-22 Thread Martin v . Löwis
Martin v. Löwis added the comment: LGTM -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16295 ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16295] With VS2010 the select extension links against wsock32 instead of ws2_32

2012-10-22 Thread Roundup Robot
Roundup Robot added the comment: New changeset daad150b4670 by Kristjan Valur Jonsson in branch '3.3': Issue #16295: Link select with ws2_32.lib, the winsock2 stub library. http://hg.python.org/cpython/rev/daad150b4670 New changeset a2cd25d434b3 by Kristjan Valur Jonsson in branch 'default':

[issue16295] With VS2010 the select extension links against wsock32 instead of ws2_32

2012-10-21 Thread Richard Oudkerk
New submission from Richard Oudkerk: Using VS2010 _socket links against ws2_32.lib but select links against wsock32.lib. Using VS2008 both extensions link against ws2_32.lib. It appears that the conversion to VS2010 caused the regression. (Compare #10295 and #11750.) -- messages:

[issue16295] With VS2010 the select extension links against wsock32 instead of ws2_32

2012-10-21 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- nosy: +brian.curtin, loewis, tim.golden ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16295 ___ ___