comparison src/Make_mvc.mak @ 12628:c3bb4552d15d v8.0.1192

patch 8.0.1192: MS-Windows: terminal feature not enabled by default commit https://github.com/vim/vim/commit/ac8069bb63c5954c787fe93b7a9265de3c0c6853 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Oct 14 20:24:19 2017 +0200 patch 8.0.1192: MS-Windows: terminal feature not enabled by default Problem: MS-Windows: terminal feature not enabled by default. Solution: Enable it. (Ken Takata)
author Christian Brabandt <cb@256bit.org>
date Sat, 14 Oct 2017 20:30:05 +0200
parents 590424e87b65
children 1a450ce6980c
comparison
equal deleted inserted replaced
12627:c18262fcbfde 12628:c3bb4552d15d
35 # IME support: IME=yes (requires GUI=yes) 35 # IME support: IME=yes (requires GUI=yes)
36 # DYNAMIC_IME=[yes or no] (to load the imm32.dll dynamically, default 36 # DYNAMIC_IME=[yes or no] (to load the imm32.dll dynamically, default
37 # is yes) 37 # is yes)
38 # Global IME support: GIME=yes (requires GUI=yes) 38 # Global IME support: GIME=yes (requires GUI=yes)
39 # 39 #
40 # Terminal support: TERMINAL=yes (default is no) 40 # Terminal support: TERMINAL=yes (default is yes)
41 # 41 #
42 # Lua interface: 42 # Lua interface:
43 # LUA=[Path to Lua directory] 43 # LUA=[Path to Lua directory]
44 # DYNAMIC_LUA=yes (to load the Lua DLL dynamically) 44 # DYNAMIC_LUA=yes (to load the Lua DLL dynamically)
45 # LUA_VER=[Lua version] (default is 53) 45 # LUA_VER=[Lua version] (default is 53)
357 !if "$(CSCOPE)" == "yes" 357 !if "$(CSCOPE)" == "yes"
358 # CSCOPE - Include support for Cscope 358 # CSCOPE - Include support for Cscope
359 CSCOPE_INCL = if_cscope.h 359 CSCOPE_INCL = if_cscope.h
360 CSCOPE_OBJ = $(OBJDIR)/if_cscope.obj 360 CSCOPE_OBJ = $(OBJDIR)/if_cscope.obj
361 CSCOPE_DEFS = -DFEAT_CSCOPE 361 CSCOPE_DEFS = -DFEAT_CSCOPE
362 !endif
363
364 !ifndef TERMINAL
365 !if "$(FEATURES)"=="HUGE"
366 TERMINAL = yes
367 !else
368 TERMINAL = no
369 !endif
362 !endif 370 !endif
363 371
364 !if "$(TERMINAL)" == "yes" 372 !if "$(TERMINAL)" == "yes"
365 TERM_OBJ = \ 373 TERM_OBJ = \
366 $(OBJDIR)/terminal.obj \ 374 $(OBJDIR)/terminal.obj \