@@ -804,10 +804,10 @@ DOTSEPARATED=$(DOTSEPARATED:b=.)
804804# MSVCRT - 1 -> link to dynamic C runtime even when building static Tcl build
805805# 0 -> link to static C runtime for static Tcl build.
806806# Does not impact shared Tcl builds (STATIC_BUILD == 0)
807- # Default: 1 for Tcl 8.7 and up, 0 otherwise.
807+ # Default: 1 for Tcl 9.0 and up, 0 otherwise.
808808# TCL_USE_STATIC_PACKAGES - 1 -> statically link the registry and dde extensions
809809# in the Tcl and Wish shell. 0 -> keep them as shared libraries. Does
810- # not impact shared Tcl builds. Implied by STATIC_BUILD since Tcl 8.7 .
810+ # not impact shared Tcl builds. Implied by STATIC_BUILD since Tcl 9.0 .
811811# USE_THREAD_ALLOC - 1 -> Use a shared global free pool for allocation.
812812# 0 -> Use the non-thread allocator.
813813# UNCHECKED - 1 -> when doing a debug build with symbols, use the release
@@ -1042,7 +1042,7 @@ WARNINGS = $(WARNINGS) -Wp64
10421042# different compilers, build configurations etc.,
10431043#
10441044# Naming convention (suffixes):
1045- # t = full thread support. (Not used for Tcl >= 8.7 )
1045+ # t = full thread support. (Not used for Tcl >= 9.0 )
10461046# s = static library (as opposed to an import library)
10471047# g = linked to the debug enabled C run-time.
10481048# x = special static build when it links to the dynamic C run-time.
@@ -1173,7 +1173,7 @@ TCLSTUBLIB = $(_TCLDIR)\lib\tclstub.lib
11731173!endif
11741174TCLIMPLIB = $(_TCLDIR ) \lib\tcl$(TCL_VERSION )$(SUFX:t= ) .lib
11751175# When building extensions, may be linking against Tcl that does not add
1176- # "t" suffix (e.g. 8.5 or 8.7 ). If lib not found check for that possibility.
1176+ # "t" suffix (e.g. 8.6 ). If lib not found check for that possibility.
11771177!if !exist("$(TCLIMPLIB)")
11781178TCLIMPLIB = $(_TCLDIR ) \lib\tcl$(TCL_VERSION ) t$(SUFX:t= ) .lib
11791179!endif
@@ -1197,7 +1197,7 @@ TCLSTUBLIB = $(_TCLDIR)\win\$(BUILDDIRTOP)\tclstub.lib
11971197!endif
11981198TCLIMPLIB = $(_TCLDIR ) \win\$(BUILDDIRTOP ) \tcl$(TCL_VERSION )$(SUFX:t= ) .lib
11991199# When building extensions, may be linking against Tcl that does not add
1200- # "t" suffix (e.g. 8.5 or 8.7 ). If lib not found check for that possibility.
1200+ # "t" suffix (e.g. 8.6 ). If lib not found check for that possibility.
12011201!if !exist("$(TCLIMPLIB)")
12021202TCLIMPLIB = $(_TCLDIR ) \win\$(BUILDDIRTOP ) \tcl$(TCL_VERSION ) t$(SUFX:t= ) .lib
12031203!endif
@@ -1262,7 +1262,7 @@ WISH = $(_TKDIR)\bin\$(WISHNAME)
12621262TKSTUBLIB = $(_TKDIR ) \lib\$(TKSTUBLIBNAME )
12631263TKIMPLIB = $(_TKDIR ) \lib\$(TKIMPLIBNAME )
12641264# When building extensions, may be linking against Tk that does not add
1265- # "t" suffix (e.g. 8.5 or 8.7 ). If lib not found check for that possibility.
1265+ # "t" suffix (e.g. 8.6 ). If lib not found check for that possibility.
12661266!if !exist("$(TKIMPLIB)")
12671267TKIMPLIBNAME = tk$(TK_VERSION )$(SUFX:t= ) .lib
12681268TKIMPLIB = $(_TKDIR ) \lib\$(TKIMPLIBNAME )
@@ -1276,7 +1276,7 @@ WISH = $(_TKDIR)\win\$(BUILDDIRTOP)\$(WISHNAME)
12761276TKSTUBLIB = $(_TKDIR ) \win\$(BUILDDIRTOP ) \$(TKSTUBLIBNAME )
12771277TKIMPLIB = $(_TKDIR ) \win\$(BUILDDIRTOP ) \$(TKIMPLIBNAME )
12781278# When building extensions, may be linking against Tk that does not add
1279- # "t" suffix (e.g. 8.5 or 8.7 ). If lib not found check for that possibility.
1279+ # "t" suffix (e.g. 8.6 ). If lib not found check for that possibility.
12801280!if !exist("$(TKIMPLIB)")
12811281TKIMPLIBNAME = tk$(TK_VERSION )$(SUFX:t= ) .lib
12821282TKIMPLIB = $(_TKDIR ) \win\$(BUILDDIRTOP ) \$(TKIMPLIBNAME )
0 commit comments