]> granicus.if.org Git - python/commitdiff
Stop providing crtassem.h symbols when compiling with
authorMartin v. Löwis <martin@v.loewis.de>
Thu, 18 Feb 2010 09:22:20 +0000 (09:22 +0000)
committerMartin v. Löwis <martin@v.loewis.de>
Thu, 18 Feb 2010 09:22:20 +0000 (09:22 +0000)
Visual Studio 2010, as msvcr100.dll is not a platform
assembly anymore.

Misc/NEWS
PC/msvcrtmodule.c

index 4441e9288b06d2925a1e992af4f88461bb78ca38..fbcb23af6692b4bbac10d1ffb15257f4c2fcad06 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -25,6 +25,11 @@ Library
 - Issue 7588: ``unittest.TextTestResult.getDescription`` now includes the test
   name in failure reports even if the test has a docstring.
 
+Extension Modules
+-----------------
+
+- Stop providing crtassem.h symbols when compiling with Visual Studio 2010, as
+  msvcr100.dll is not a platform assembly anymore.
 
 Tests
 -----
index 6e804e454f7dfcf3a58a4bb22a00eba72bdd2209..9764a02ab362532c9aa7699161a18763f76270b7 100755 (executable)
@@ -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