diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-08-23 22:40:41 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-08-23 22:40:41 +0200 |
commit | 77f7474d089cbc68cb7df32cc3828a9dec80fd93 (patch) | |
tree | 99707bfb9ff140f34519cc059c09b7e8e4a11fc5 /src/Make_mvc.mak | |
parent | 829aa64cf5a113bb683ddf8b32e483e0696602ea (diff) | |
download | vim-git-77f7474d089cbc68cb7df32cc3828a9dec80fd93.tar.gz |
patch 8.0.0989: ActiveTcl dll name has changed in 8.6.6v8.0.0989
Problem: ActiveTcl dll name has changed in 8.6.6.
Solution: Adjust the makefile. (Ken Takata)
Diffstat (limited to 'src/Make_mvc.mak')
-rw-r--r-- | src/Make_mvc.mak | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Make_mvc.mak b/src/Make_mvc.mak index 4180b7c76..c8c1d1173 100644 --- a/src/Make_mvc.mak +++ b/src/Make_mvc.mak @@ -84,6 +84,7 @@ # TCL_VER=[Tcl version, e.g. 80, 83] (default is 86) # TCL_VER_LONG=[Tcl version, eg 8.3] (default is 8.6) # You must set TCL_VER_LONG when you set TCL_VER. +# TCL_DLL=[Tcl dll name, e.g. tcl86.dll] (default is tcl86.dll) # # Cscope support: CSCOPE=yes # @@ -832,7 +833,9 @@ TCL_VER_LONG = 8.6 !message Tcl requested (version $(TCL_VER)) - root dir is "$(TCL)" !if "$(DYNAMIC_TCL)" == "yes" !message Tcl DLL will be loaded dynamically +!ifndef TCL_DLL TCL_DLL = tcl$(TCL_VER).dll +!endif CFLAGS = $(CFLAGS) -DFEAT_TCL -DDYNAMIC_TCL -DDYNAMIC_TCL_DLL=\"$(TCL_DLL)\" \ -DDYNAMIC_TCL_VER=\"$(TCL_VER_LONG)\" TCL_OBJ = $(OUTDIR)\if_tcl.obj |