diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2007-10-12 08:58:48 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2007-10-12 08:58:48 (GMT) |
commit | d79fa9e504b4d0ede45708d2de406e775c4fd548 (patch) | |
tree | 8d7f99aed2e71f38c4bdc3a6f6c3e634d21bd8fd /PC | |
parent | d6f638188f842bc459eabcaaca12fa654719c6cd (diff) | |
download | cpython-d79fa9e504b4d0ede45708d2de406e775c4fd548.zip cpython-d79fa9e504b4d0ede45708d2de406e775c4fd548.tar.gz cpython-d79fa9e504b4d0ede45708d2de406e775c4fd548.tar.bz2 |
Bug #1216: Restore support for Visual Studio 2002.
Diffstat (limited to 'PC')
-rw-r--r-- | PC/pyconfig.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/PC/pyconfig.h b/PC/pyconfig.h index 397b67b..f0abd74 100644 --- a/PC/pyconfig.h +++ b/PC/pyconfig.h @@ -350,11 +350,11 @@ Py_NO_ENABLE_SHARED to find out. Also support MS_NO_COREDLL for b/w compat */ define these. If some compiler does not provide them, modify the #if appropriately. */ #if defined(_MSC_VER) -#if _MSC_VER > 1201 +#if _MSC_VER > 1300 #define HAVE_UINTPTR_T 1 #define HAVE_INTPTR_T 1 #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 #endif /* _MSC_VER > 1200 */ #endif /* _MSC_VER */ |