comparison src/Make_mvc.mak @ 12218:cd366d80d53e v8.0.0989

patch 8.0.0989: ActiveTcl dll name has changed in 8.6.6 commit https://github.com/vim/vim/commit/77f7474d089cbc68cb7df32cc3828a9dec80fd93 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Aug 23 22:40:41 2017 +0200 patch 8.0.0989: ActiveTcl dll name has changed in 8.6.6 Problem: ActiveTcl dll name has changed in 8.6.6. Solution: Adjust the makefile. (Ken Takata)
author Christian Brabandt <cb@256bit.org>
date Wed, 23 Aug 2017 22:45:05 +0200
parents b9b06aa0b6d9
children d4a3ad146204
comparison
equal deleted inserted replaced
12217:719492eec20b 12218:cd366d80d53e
82 # TCL=[Path to Tcl directory] 82 # TCL=[Path to Tcl directory]
83 # DYNAMIC_TCL=yes (to load the Tcl DLL dynamically) 83 # DYNAMIC_TCL=yes (to load the Tcl DLL dynamically)
84 # TCL_VER=[Tcl version, e.g. 80, 83] (default is 86) 84 # TCL_VER=[Tcl version, e.g. 80, 83] (default is 86)
85 # TCL_VER_LONG=[Tcl version, eg 8.3] (default is 8.6) 85 # TCL_VER_LONG=[Tcl version, eg 8.3] (default is 8.6)
86 # You must set TCL_VER_LONG when you set TCL_VER. 86 # You must set TCL_VER_LONG when you set TCL_VER.
87 # TCL_DLL=[Tcl dll name, e.g. tcl86.dll] (default is tcl86.dll)
87 # 88 #
88 # Cscope support: CSCOPE=yes 89 # Cscope support: CSCOPE=yes
89 # 90 #
90 # Iconv library support (always dynamically loaded): 91 # Iconv library support (always dynamically loaded):
91 # ICONV=[yes or no] (default is yes) 92 # ICONV=[yes or no] (default is yes)
830 TCL_VER_LONG = 8.6 831 TCL_VER_LONG = 8.6
831 !endif 832 !endif
832 !message Tcl requested (version $(TCL_VER)) - root dir is "$(TCL)" 833 !message Tcl requested (version $(TCL_VER)) - root dir is "$(TCL)"
833 !if "$(DYNAMIC_TCL)" == "yes" 834 !if "$(DYNAMIC_TCL)" == "yes"
834 !message Tcl DLL will be loaded dynamically 835 !message Tcl DLL will be loaded dynamically
836 !ifndef TCL_DLL
835 TCL_DLL = tcl$(TCL_VER).dll 837 TCL_DLL = tcl$(TCL_VER).dll
838 !endif
836 CFLAGS = $(CFLAGS) -DFEAT_TCL -DDYNAMIC_TCL -DDYNAMIC_TCL_DLL=\"$(TCL_DLL)\" \ 839 CFLAGS = $(CFLAGS) -DFEAT_TCL -DDYNAMIC_TCL -DDYNAMIC_TCL_DLL=\"$(TCL_DLL)\" \
837 -DDYNAMIC_TCL_VER=\"$(TCL_VER_LONG)\" 840 -DDYNAMIC_TCL_VER=\"$(TCL_VER_LONG)\"
838 TCL_OBJ = $(OUTDIR)\if_tcl.obj 841 TCL_OBJ = $(OUTDIR)\if_tcl.obj
839 TCL_INC = /I "$(TCL)\Include" /I "$(TCL)" 842 TCL_INC = /I "$(TCL)\Include" /I "$(TCL)"
840 TCL_LIB = "$(TCL)\lib\tclstub$(TCL_VER).lib" 843 TCL_LIB = "$(TCL)\lib\tclstub$(TCL_VER).lib"