From 12c6bfab40d6943452f6f9db113bab5f5fd24c89 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Fri, 14 Dec 2012 02:10:15 +0000 Subject: [PATCH] Patch from niki@vintech.bg allowing builds for Python 2.5 (using MSVC 7.1) to work again. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73184 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- build/tools/build-wxwidgets.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build/tools/build-wxwidgets.py b/build/tools/build-wxwidgets.py index 3c5bf07e5c..6c651e2f61 100755 --- a/build/tools/build-wxwidgets.py +++ b/build/tools/build-wxwidgets.py @@ -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... -- 2.45.2