diff options
| author | dgp <dgp@users.sourceforge.net> | 2018-03-12 13:48:35 (GMT) |
|---|---|---|
| committer | dgp <dgp@users.sourceforge.net> | 2018-03-12 13:48:35 (GMT) |
| commit | 67a242e0031c5c5108446b9fc1801d8dec548e70 (patch) | |
| tree | dfd5e7b537a14ab4e8c4aa8cf6b5b1dba65df2a4 | |
| parent | 7c60d44ce6b8c71d89857ce711a3f7f62ce2de2c (diff) | |
| download | tcl-67a242e0031c5c5108446b9fc1801d8dec548e70.zip tcl-67a242e0031c5c5108446b9fc1801d8dec548e70.tar.gz tcl-67a242e0031c5c5108446b9fc1801d8dec548e70.tar.bz2 | |
msgcat 1.7 uses [tailcall], so requires Tcl 8.6.
| -rw-r--r-- | library/msgcat/msgcat.tcl | 2 | ||||
| -rw-r--r-- | library/msgcat/pkgIndex.tcl | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/library/msgcat/msgcat.tcl b/library/msgcat/msgcat.tcl index 33ff5cb..203a1bf 100644 --- a/library/msgcat/msgcat.tcl +++ b/library/msgcat/msgcat.tcl @@ -11,7 +11,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. -package require Tcl 8.5- +package require Tcl 8.6- # When the version number changes, be sure to update the pkgIndex.tcl file, # and the installation directory in the Makefiles. package provide msgcat 1.7.0 diff --git a/library/msgcat/pkgIndex.tcl b/library/msgcat/pkgIndex.tcl index fe3b3a1..74a284f 100644 --- a/library/msgcat/pkgIndex.tcl +++ b/library/msgcat/pkgIndex.tcl @@ -1,2 +1,3 @@ -if {![package vsatisfies [package provide Tcl] 8.5-]} {return} +if {![package vsatisfies [package provide Tcl] 8.5]} {return} +if {![package vsatisfies [package provide Tcl] 8.6-]} {return} package ifneeded msgcat 1.7.0 [list source [file join $dir msgcat.tcl]] |
