]> git.saurik.com Git - wxWidgets.git/commitdiff
Patch from niki@vintech.bg allowing builds for Python 2.5 (using MSVC 7.1) to work...
authorRobin Dunn <robin@alldunn.com>
Fri, 14 Dec 2012 02:10:15 +0000 (02:10 +0000)
committerRobin Dunn <robin@alldunn.com>
Fri, 14 Dec 2012 02:10:15 +0000 (02:10 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73184 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

build/tools/build-wxwidgets.py

index 3c5bf07e5c2d4617428c1071cce55ee322b12ab9..6c651e2f61f332b5e0010f6ccab570d5e7876d13 100755 (executable)
@@ -60,6 +60,8 @@ def getXcodePath():
 
 def getVisCVersion():
     text = getoutput("cl.exe")
+    if 'Version 13' in text:
+        return '71'
     if 'Version 15' in text:
         return '90'
     # TODO: Add more tests to get the other versions...