You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by rh...@apache.org on 2014/06/30 16:21:40 UTC

svn commit: r1606751 - /subversion/branches/1.8.x-VS2013-14/build/generator/gen_win.py

Author: rhuijben
Date: Mon Jun 30 14:21:39 2014
New Revision: 1606751

URL: http://svn.apache.org/r1606751
Log:
On the 1.8.x-VS2013-14 branch: Set the right informational version for
Visual Studio 2013.

The rest of the original patch really allows Visual Studio to ignore this
number by creating a proper version independent solution file for VS2010 and
later, so this is just a minor fix.

* branches/1.8.x/build/generator/gen_win.py
  (parse_options): Don't use 2012 as informational version for VS 2013.

Modified:
    subversion/branches/1.8.x-VS2013-14/build/generator/gen_win.py

Modified: subversion/branches/1.8.x-VS2013-14/build/generator/gen_win.py
URL: http://svn.apache.org/viewvc/subversion/branches/1.8.x-VS2013-14/build/generator/gen_win.py?rev=1606751&r1=1606750&r2=1606751&view=diff
==============================================================================
--- subversion/branches/1.8.x-VS2013-14/build/generator/gen_win.py (original)
+++ subversion/branches/1.8.x-VS2013-14/build/generator/gen_win.py Mon Jun 30 14:21:39 2014
@@ -190,7 +190,7 @@ class GeneratorBase(gen_base.GeneratorBa
           self.vcproj_version = '11.0'
           self.vcproj_extension = '.vcxproj'
         elif val == '2013' or val == '12':
-          self.vs_version = '2012'
+          self.vs_version = '2013'
           self.sln_version = '12.00'
           self.vcproj_version = '12.0'
           self.vcproj_extension = '.vcxproj'