Commit d79fa9e5 authored by Martin v. Löwis's avatar Martin v. Löwis

Bug #1216: Restore support for Visual Studio 2002.

parent d6f63818
...@@ -151,6 +151,11 @@ Build ...@@ -151,6 +151,11 @@ Build
- Makefile.pre.in(buildbottest): Run an optional script pybuildbot.identify - Makefile.pre.in(buildbottest): Run an optional script pybuildbot.identify
to include some information about the build environment. to include some information about the build environment.
Windows
-------
- Bug #1216: Restore support for Visual Studio 2002.
What's New in Python 2.5.1? What's New in Python 2.5.1?
============================= =============================
......
...@@ -350,11 +350,11 @@ Py_NO_ENABLE_SHARED to find out. Also support MS_NO_COREDLL for b/w compat */ ...@@ -350,11 +350,11 @@ Py_NO_ENABLE_SHARED to find out. Also support MS_NO_COREDLL for b/w compat */
define these. define these.
If some compiler does not provide them, modify the #if appropriately. */ If some compiler does not provide them, modify the #if appropriately. */
#if defined(_MSC_VER) #if defined(_MSC_VER)
#if _MSC_VER > 1201 #if _MSC_VER > 1300
#define HAVE_UINTPTR_T 1 #define HAVE_UINTPTR_T 1
#define HAVE_INTPTR_T 1 #define HAVE_INTPTR_T 1
#else #else
/* VC6 & eVC4 don't support the C99 LL suffix for 64-bit integer literals */ /* VC6, VS 2002 and eVC4 don't support the C99 LL suffix for 64-bit integer literals */
#define Py_LL(x) x##I64 #define Py_LL(x) x##I64
#endif /* _MSC_VER > 1200 */ #endif /* _MSC_VER > 1200 */
#endif /* _MSC_VER */ #endif /* _MSC_VER */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment