File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -340,6 +340,7 @@ endif
340340# TCL_VER=[TCL version, eg 83, 84] (default is 86)
341341# TCL_VER_LONG=[Tcl version, eg 8.3] (default is 8.6)
342342# You must set TCL_VER_LONG when you set TCL_VER.
343+ # TCL_DLL=[TCL dll name, eg tcl86.dll] (default is tcl86.dll)
343344ifdef TCL
344345ifndef DYNAMIC_TCL
345346DYNAMIC_TCL =yes
@@ -350,6 +351,9 @@ endif
350351ifndef TCL_VER_LONG
351352TCL_VER_LONG = 8.6
352353endif
354+ ifndef TCL_DLL
355+ TCL_DLL = tcl$(TCL_VER ) .dll
356+ endif
353357TCLINC += -I$(TCL ) /include
354358endif
355359
@@ -526,7 +530,7 @@ endif
526530ifdef TCL
527531CFLAGS += -DFEAT_TCL $(TCLINC )
528532ifeq (yes, $(DYNAMIC_TCL ) )
529- CFLAGS += -DDYNAMIC_TCL -DDYNAMIC_TCL_DLL=\"tcl $( TCL_VER ) .dll \" -DDYNAMIC_TCL_VER=\"$(TCL_VER_LONG ) \"
533+ CFLAGS += -DDYNAMIC_TCL -DDYNAMIC_TCL_DLL=\"$( TCL_DLL ) \" -DDYNAMIC_TCL_VER=\"$(TCL_VER_LONG ) \"
530534endif
531535endif
532536
Original file line number Diff line number Diff line change 8484# TCL_VER=[Tcl version, e.g. 80, 83] (default is 86)
8585# TCL_VER_LONG=[Tcl version, eg 8.3] (default is 8.6)
8686# 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)
8788#
8889# Cscope support: CSCOPE=yes
8990#
@@ -832,7 +833,9 @@ TCL_VER_LONG = 8.6
832833!message Tcl requested (version $(TCL_VER)) - root dir is "$(TCL)"
833834!if "$(DYNAMIC_TCL)" == "yes"
834835!message Tcl DLL will be loaded dynamically
836+ !ifndef TCL_DLL
835837TCL_DLL = tcl$(TCL_VER ) .dll
838+ !endif
836839CFLAGS = $(CFLAGS ) -DFEAT_TCL -DDYNAMIC_TCL -DDYNAMIC_TCL_DLL=\"$(TCL_DLL ) \" \
837840 -DDYNAMIC_TCL_VER=\"$(TCL_VER_LONG ) \"
838841TCL_OBJ = $(OUTDIR ) \if_tcl.obj
Original file line number Diff line number Diff line change @@ -769,6 +769,8 @@ static char *(features[]) =
769769
770770static int included_patches [] =
771771{ /* Add new patch number below this line */
772+ /**/
773+ 989 ,
772774/**/
773775 988 ,
774776/**/
You can’t perform that action at this time.
0 commit comments