mirror of
https://github.com/vim/vim.git
synced 2025-07-25 10:54:51 -04:00
patch 7.4.1063
Problem: TCL_VER_LONG and DYNAMIC_TCL_VER are not set when building with Cygwin and MingW. Solution: Add TCL_VER_LONG and DYNAMIC_TCL_VER to the makefile.
This commit is contained in:
parent
0bee2fe25a
commit
eca99bd45f
@ -263,6 +263,8 @@ endif
|
|||||||
# TCL=[Path to TCL directory] (Set inside Make_cyg.mak or Make_ming.mak)
|
# TCL=[Path to TCL directory] (Set inside Make_cyg.mak or Make_ming.mak)
|
||||||
# DYNAMIC_TCL=yes (to load the TCL DLL dynamically)
|
# DYNAMIC_TCL=yes (to load the TCL DLL dynamically)
|
||||||
# TCL_VER=[TCL version, eg 83, 84] (default is 83)
|
# TCL_VER=[TCL version, eg 83, 84] (default is 83)
|
||||||
|
# TCL_VER_LONG=[Tcl version, eg 8.3] (default is 8.3)
|
||||||
|
# You must set TCL_VER_LONG when you set TCL_VER.
|
||||||
ifdef TCL
|
ifdef TCL
|
||||||
ifndef DYNAMIC_TCL
|
ifndef DYNAMIC_TCL
|
||||||
DYNAMIC_TCL=yes
|
DYNAMIC_TCL=yes
|
||||||
@ -270,6 +272,9 @@ endif
|
|||||||
ifndef TCL_VER
|
ifndef TCL_VER
|
||||||
TCL_VER = 83
|
TCL_VER = 83
|
||||||
endif
|
endif
|
||||||
|
ifndef TCL_VER_LONG
|
||||||
|
TCL_VER_LONG = 8.3
|
||||||
|
endif
|
||||||
TCLINC += -I$(TCL)/include
|
TCLINC += -I$(TCL)/include
|
||||||
endif
|
endif
|
||||||
|
|
||||||
@ -462,7 +467,7 @@ endif
|
|||||||
ifdef TCL
|
ifdef TCL
|
||||||
CFLAGS += -DFEAT_TCL $(TCLINC)
|
CFLAGS += -DFEAT_TCL $(TCLINC)
|
||||||
ifeq (yes, $(DYNAMIC_TCL))
|
ifeq (yes, $(DYNAMIC_TCL))
|
||||||
CFLAGS += -DDYNAMIC_TCL -DDYNAMIC_TCL_DLL=\"tcl$(TCL_VER).dll\"
|
CFLAGS += -DDYNAMIC_TCL -DDYNAMIC_TCL_DLL=\"tcl$(TCL_VER).dll\" -DDYNAMIC_TCL_VER=\"$(TCL_VER_LONG)\"
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
@ -741,6 +741,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
1063,
|
||||||
/**/
|
/**/
|
||||||
1062,
|
1062,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user