This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author amaury.forgeotdarc
Recipients amaury.forgeotdarc
Date 2008-02-11.10:50:12
SpamBayes Score 0.038510516
Marked as misclassified No
Message-id <1202727039.47.0.783651728329.issue2065@psf.upfronthosting.co.za>
In-reply-to
Content
Since r60696, WINVER is forced to _WIN32_WINNT_WIN2K. This has two problems:
- Vs8 (and before) does not define _WIN32_WINNT_WIN2K. It should be
replaced with 0x500.
- When WINVER is set to 0x500, vc6 gives a long warning because at the
time, windows nt 5.0 was only at beta stage. Moreover, there are other
clashes between winsock.h and winsock2.h, that show up when WINVER is 0x500.

To correct this, I propose:
- To replace _WIN32_WINNT_WIN2K and similar constants by their values.
- That 0x500 is not the required value, but the *maximum* value
necessary when targeting win2k. VC6 can set it to 0x400.

I'll try a patch later tonight.
History
Date User Action Args
2008-02-11 10:50:39amaury.forgeotdarcsetspambayes_score: 0.0385105 -> 0.038510516
recipients: + amaury.forgeotdarc
2008-02-11 10:50:39amaury.forgeotdarcsetspambayes_score: 0.0385105 -> 0.0385105
messageid: <1202727039.47.0.783651728329.issue2065@psf.upfronthosting.co.za>
2008-02-11 10:50:13amaury.forgeotdarclinkissue2065 messages
2008-02-11 10:50:13amaury.forgeotdarccreate