0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

updated for version 7.4.412

Problem:    Can't build on Windows XP with MSVC.
Solution:   Add SUBSYSTEM_VER to the Makefile. (Yongwei Wu)
This commit is contained in:
Bram Moolenaar
2014-08-22 18:12:57 +02:00
parent 1b338d2022
commit ce2f2e061d
3 changed files with 30 additions and 0 deletions

View File

@@ -657,6 +657,10 @@ GUI_LIB = \
SUBSYSTEM = console
!endif
!if "$(SUBSYSTEM_VER)" != ""
SUBSYSTEM = $(SUBSYSTEM),$(SUBSYSTEM_VER)
!endif
!if "$(GUI)" == "yes" && "$(DIRECTX)" == "yes"
CFLAGS = $(CFLAGS) $(DIRECTX_DEFS)
GUI_INCL = $(GUI_INCL) $(DIRECTX_INCL)