diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-03-02 17:59:44 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-03-02 17:59:44 +0100 |
commit | 2498b3ab108a99f125e756ac46bf2629ceb23c25 (patch) | |
tree | 9ed062051ea6fbb72c840c542e3e6146326faa46 /src/Make_mvc.mak | |
parent | 8b9c05fa5416bd35597a4fbe83f811d4f6d068d7 (diff) | |
download | vim-git-2498b3ab108a99f125e756ac46bf2629ceb23c25.tar.gz |
updated for version 7.2.384v7.2.384
Problem: Vim doesn't build properly with MSVC 2010.
Solution: Add the nmake version to the build file. (George Reilly)
Diffstat (limited to 'src/Make_mvc.mak')
-rw-r--r-- | src/Make_mvc.mak | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Make_mvc.mak b/src/Make_mvc.mak index 15a14ade1..38ced6e5c 100644 --- a/src/Make_mvc.mak +++ b/src/Make_mvc.mak @@ -361,6 +361,9 @@ MSVCVER = 9.0 !if "$(_NMAKE_VER)" == "10.00.20506.01" MSVCVER = 10.0 !endif +!if "$(_NMAKE_VER)" == "10.00.30128.01" +MSVCVER = 10.0 +!endif !endif # Abort bulding VIM if version of VC is unrecognised. |