Skip to content

Commit 3d6d5cc

Browse files
committed
patch 7.4.1095
Problem: Can't build GvimExt with SDK 7.1. Solution: Support using setenv.bat instead of vcvars32.bat. (Ken Takata)
1 parent 5a46a58 commit 3d6d5cc

3 files changed

Lines changed: 8 additions & 0 deletions

File tree

src/GvimExt/Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ NODEBUG = 1
1616
# On Windows NT
1717
! ifndef CPU
1818
CPU = i386
19+
! if !defined(PLATFORM) && defined(TARGET_CPU)
20+
PLATFORM = $(TARGET_CPU)
21+
! endif
1922
! ifdef PLATFORM
2023
! if ("$(PLATFORM)" == "x64") || ("$(PLATFORM)" == "X64")
2124
CPU = AMD64

src/Make_mvc.mak

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,9 @@ CPU = i386
216216
! endif
217217
! else # !CPU
218218
CPU = i386
219+
! if !defined(PLATFORM) && defined(TARGET_CPU)
220+
PLATFORM = $(TARGET_CPU)
221+
! endif
219222
! ifdef PLATFORM
220223
! if ("$(PLATFORM)" == "x64") || ("$(PLATFORM)" == "X64")
221224
CPU = AMD64

src/version.c

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

742742
static int included_patches[] =
743743
{ /* Add new patch number below this line */
744+
/**/
745+
1095,
744746
/**/
745747
1094,
746748
/**/

0 commit comments

Comments
 (0)