[Numpy-svn] r6161 - branches/numpy-mingw-w64/numpy/distutils

numpy-svn at scipy.org numpy-svn at scipy.org
Fri Dec 19 04:10:08 EST 2008


Author: cdavid
Date: 2008-12-19 03:10:03 -0600 (Fri, 19 Dec 2008)
New Revision: 6161

Modified:
   branches/numpy-mingw-w64/numpy/distutils/mingw32ccompiler.py
Log:
Do not generate manifest when built with msver 8.*, it does not look like it is needed, and we dont support it anyway ATM.

Modified: branches/numpy-mingw-w64/numpy/distutils/mingw32ccompiler.py
===================================================================
--- branches/numpy-mingw-w64/numpy/distutils/mingw32ccompiler.py	2008-12-19 09:02:24 UTC (rev 6160)
+++ branches/numpy-mingw-w64/numpy/distutils/mingw32ccompiler.py	2008-12-19 09:10:03 UTC (rev 6161)
@@ -405,7 +405,7 @@
 def generate_manifest(config):
     msver = get_build_msvc_version()
     if msver is not None:
-        if msver >= 8:
+        if msver >= 9:
             check_embedded_msvcr_match_linked(msver)
             ma = int(msver)
             mi = int((msver - ma) * 10)




More information about the Numpy-svn mailing list