Hi, I found that nmake from VS2010 SP1 is not recognized. Attached patch fixes it.
Thanks, Ken Takata -- 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
# HG changeset patch # Parent b060847b51eccb804f26de0e2aa1b8940a3be12b diff --git a/src/Make_mvc.mak b/src/Make_mvc.mak --- a/src/Make_mvc.mak +++ b/src/Make_mvc.mak @@ -407,6 +407,9 @@ !if "$(_NMAKE_VER)" == "10.00.30319.01" MSVCVER = 10.0 !endif +!if "$(_NMAKE_VER)" == "10.00.40219.01" +MSVCVER = 10.0 +!endif !if "$(_NMAKE_VER)" == "11.00.50727.1" MSVCVER = 11.0 !endif
