Skip to content

Commit 316771a

Browse files
committed
updated for version 7.3.702
Problem: Nmake from VS6 service pack 6 is not recognized. Solution: Detect the version number. (Jiri Sedlak)
1 parent 2f1c96f commit 316771a

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

src/Make_mvc.mak

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -373,6 +373,10 @@ MSVCVER = 5.0
373373
MSVCVER = 6.0
374374
CPU = ix86
375375
!endif
376+
!if "$(_NMAKE_VER)" == "6.00.9782.0"
377+
MSVCVER = 6.0
378+
CPU = ix86
379+
!endif
376380
!if "$(_NMAKE_VER)" == "7.00.9466"
377381
MSVCVER = 7.0
378382
!endif

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -719,6 +719,8 @@ static char *(features[]) =
719719

720720
static int included_patches[] =
721721
{ /* Add new patch number below this line */
722+
/**/
723+
702,
722724
/**/
723725
701,
724726
/**/

0 commit comments

Comments
 (0)