diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-03-09 14:29:30 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-03-09 14:29:30 (GMT) |
commit | cabdab6542ae2c49f932009ed1643db724857401 (patch) | |
tree | 8546af66fef7b1ddda87ebd540f66ea2f94eca0e /win | |
parent | 23afeb02af6706ac255b77e35f2cc644d2c4e524 (diff) | |
download | tk-cabdab6542ae2c49f932009ed1643db724857401.zip tk-cabdab6542ae2c49f932009ed1643db724857401.tar.gz tk-cabdab6542ae2c49f932009ed1643db724857401.tar.bz2 |
(cherry-pick) Explicit require Tcl 8.6.0, no matter if Tk is compiled against a later Tcl patchlevel.
Diffstat (limited to 'win')
-rw-r--r-- | win/makefile.vc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/makefile.vc b/win/makefile.vc index ae43eb6..6f61327 100644 --- a/win/makefile.vc +++ b/win/makefile.vc @@ -961,7 +961,7 @@ install-binaries: !if !$(STATIC_BUILD)
@echo creating package index
@type << > $(OUT_DIR)\pkgIndex.tcl
-if {[catch {package present Tcl $(TCL_PATCH_LEVEL)}]} { return }
+if {[catch {package present Tcl 8.6.0}]} { return }
if {($$::tcl_platform(platform) eq "unix") && ([info exists ::env(DISPLAY)]
|| ([info exists ::argv] && ("-display" in $$::argv)))} {
package ifneeded Tk $(TK_PATCH_LEVEL) [list load [file join $$dir .. .. bin libtk$(TK_DOTVERSION).dll] Tk]
|