0
0
mirror of https://github.com/vim/vim.git synced 2025-09-26 04:04:07 -04:00

patch 7.4.1095

Problem:    Can't build GvimExt with SDK 7.1.
Solution:   Support using setenv.bat instead of vcvars32.bat. (Ken Takata)
This commit is contained in:
Bram Moolenaar
2016-01-15 18:03:32 +01:00
parent 5a46a58eb6
commit 3d6d5cc3a4
3 changed files with 8 additions and 0 deletions

View File

@@ -16,6 +16,9 @@ NODEBUG = 1
# On Windows NT # On Windows NT
! ifndef CPU ! ifndef CPU
CPU = i386 CPU = i386
! if !defined(PLATFORM) && defined(TARGET_CPU)
PLATFORM = $(TARGET_CPU)
! endif
! ifdef PLATFORM ! ifdef PLATFORM
! if ("$(PLATFORM)" == "x64") || ("$(PLATFORM)" == "X64") ! if ("$(PLATFORM)" == "x64") || ("$(PLATFORM)" == "X64")
CPU = AMD64 CPU = AMD64

View File

@@ -216,6 +216,9 @@ CPU = i386
! endif ! endif
! else # !CPU ! else # !CPU
CPU = i386 CPU = i386
! if !defined(PLATFORM) && defined(TARGET_CPU)
PLATFORM = $(TARGET_CPU)
! endif
! ifdef PLATFORM ! ifdef PLATFORM
! if ("$(PLATFORM)" == "x64") || ("$(PLATFORM)" == "X64") ! if ("$(PLATFORM)" == "x64") || ("$(PLATFORM)" == "X64")
CPU = AMD64 CPU = AMD64

View File

@@ -741,6 +741,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
1095,
/**/ /**/
1094, 1094,
/**/ /**/