patch 7.4.728
Problem: Can't build with some version of Visual Studio 2015.
Solution: Recognize another version 14 number. (Sinan)
diff --git a/src/Make_mvc.mak b/src/Make_mvc.mak
index 05574c6..063282d 100644
--- a/src/Make_mvc.mak
+++ b/src/Make_mvc.mak
@@ -446,7 +446,7 @@
!if "$(_NMAKE_VER)" == "12.00.21005.1"
MSVCVER = 12.0
!endif
-!if "$(_NMAKE_VER)" == "14.00.22609.0"
+!if ("$(_NMAKE_VER)" == "14.00.22609.0") || ("$(_NMAKE_VER)" == "14.00.22816.0")
MSVCVER = 14.0
!endif
!endif
diff --git a/src/version.c b/src/version.c
index 8e47112..b469a6d 100644
--- a/src/version.c
+++ b/src/version.c
@@ -742,6 +742,8 @@
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 728,
+/**/
727,
/**/
726,