diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2010-02-18 09:22:20 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2010-02-18 09:22:20 (GMT) |
commit | 413fabc070d9502f3057758b389cabca91b3fb1e (patch) | |
tree | 823b0502cd9edd6448afc2be0dd93674b67040d1 /PC | |
parent | 6f9030329c0eb9d3aa279b26842efc51a47d96e0 (diff) | |
download | cpython-413fabc070d9502f3057758b389cabca91b3fb1e.zip cpython-413fabc070d9502f3057758b389cabca91b3fb1e.tar.gz cpython-413fabc070d9502f3057758b389cabca91b3fb1e.tar.bz2 |
Stop providing crtassem.h symbols when compiling with
Visual Studio 2010, as msvcr100.dll is not a platform
assembly anymore.
Diffstat (limited to 'PC')
-rwxr-xr-x | PC/msvcrtmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PC/msvcrtmodule.c b/PC/msvcrtmodule.c index 6e804e4..9764a02 100755 --- a/PC/msvcrtmodule.c +++ b/PC/msvcrtmodule.c @@ -23,7 +23,7 @@ #include <sys/locking.h> #ifdef _MSC_VER -#if _MSC_VER >= 1500 +#if _MSC_VER >= 1500 && _MSC_VER < 1600 #include <crtassem.h> #endif #endif |