Hi, When compiling Vim using VC2010 Express there is an issue with the version string of nmake which prevents compilation. This could be fixed by the following -
diff -r 014a996ac896 src/Make_mvc.mak --- a/src/Make_mvc.mak Wed May 19 21:57:45 2010 +0200 +++ b/src/Make_mvc.mak Thu May 20 10:32:41 2010 +0530 @@ -364,6 +364,9 @@ !if "$(_NMAKE_VER)" == "10.00.30128.01" MSVCVER = 10.0 !endif +!if "$(_NMAKE_VER)" == "10.00.30319.01" +MSVCVER = 10.0 +!endif !endif /harig -- 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
