Hello all, The following mini-patch adds support for Microsoft Visual Studio 2012 Update 3, which has bumped their version number in the compiler.
I have tested this and can confirm that a vim executable is successfully produced. diff -r 588ae256b2af src/Make_mvc.mak --- a/src/Make_mvc.mak Mon Jul 08 09:07:47 2013 -0400 +++ b/src/Make_mvc.mak Mon Jul 08 09:35:52 2013 -0400 @@ -429,6 +429,9 @@ !if "$(_NMAKE_VER)" == "11.00.60315.1" MSVCVER = 11.0 !endif +!if "$(_NMAKE_VER)" == "11.00.60610.1" +MSVCVER = 11.0 +!endif !endif # Abort building VIM if version of VC is unrecognised. -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
