summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <bram@vim.org>2012-11-23 21:47:22 +0100
committerBram Moolenaar <bram@vim.org>2012-11-23 21:47:22 +0100
commit8ae36b5c68e718bbcafb1cbacb97647d4bf3df0c (patch)
tree446d076b015ce78d3b14f60cb53c106df1f4716f
parentf806db9f7f8b822c0c6a1d63278fc312e3a6c58f (diff)
downloadvim-8ae36b5c68e718bbcafb1cbacb97647d4bf3df0c.tar.gz
updated for version 7.3.727v7.3.727v7-3-727
Problem: Can't always find Win32.mak when building GvimExt. Solution: Use same mechanism as in Make_mvc.mak. (Cade Foster)
-rw-r--r--src/GvimExt/Makefile6
-rw-r--r--src/version.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/src/GvimExt/Makefile b/src/GvimExt/Makefile
index 24880253..5c598c1a 100644
--- a/src/GvimExt/Makefile
+++ b/src/GvimExt/Makefile
@@ -10,7 +10,11 @@ APPVER=4.0
NODEBUG = 1
!endif
-!include <win32.mak>
+!ifdef SDK_INCLUDE_DIR
+!include $(SDK_INCLUDE_DIR)\Win32.mak
+!else
+!include <Win32.mak>
+!endif
all: gvimext.dll
diff --git a/src/version.c b/src/version.c
index 62dd602f..46143547 100644
--- a/src/version.c
+++ b/src/version.c
@@ -726,6 +726,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 727,
+/**/
726,
/**/
725,