Skip to content
Snippets Groups Projects
Commit 67a4f6cf authored by Bram Moolenaar's avatar Bram Moolenaar
Browse files

updated for version 7.3.702

Problem:    Nmake from VS6 service pack 6 is not recognized.
Solution:   Detect the version number. (Jiri Sedlak)
parent faca8405
No related branches found
Tags v7.3.702
No related merge requests found
......@@ -373,6 +373,10 @@ MSVCVER = 5.0
MSVCVER = 6.0
CPU = ix86
!endif
!if "$(_NMAKE_VER)" == "6.00.9782.0"
MSVCVER = 6.0
CPU = ix86
!endif
!if "$(_NMAKE_VER)" == "7.00.9466"
MSVCVER = 7.0
!endif
......
......@@ -719,6 +719,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
702,
/**/
701,
/**/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment