diff options
author | kjnash <k.j.nash@usa.net> | 2020-06-19 12:37:17 (GMT) |
---|---|---|
committer | kjnash <k.j.nash@usa.net> | 2020-06-19 12:37:17 (GMT) |
commit | 4b7534f6ab5679c6ad37ceadc11d6ac0b16d5b5c (patch) | |
tree | 1e4788149c5cf047fe29cfcaaf208fb0f1829d1d /library/opt | |
parent | f14b27d11940c7ec28136bcd04a21b6f75870ad9 (diff) | |
parent | 0a8c9a817e923652ceea7b0c797e5b15e80e0a77 (diff) | |
download | tcl-4b7534f6ab5679c6ad37ceadc11d6ac0b16d5b5c.zip tcl-4b7534f6ab5679c6ad37ceadc11d6ac0b16d5b5c.tar.gz tcl-4b7534f6ab5679c6ad37ceadc11d6ac0b16d5b5c.tar.bz2 |
Merge 8.6
Diffstat (limited to 'library/opt')
-rw-r--r-- | library/opt/optparse.tcl | 4 | ||||
-rw-r--r-- | library/opt/pkgIndex.tcl | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/library/opt/optparse.tcl b/library/opt/optparse.tcl index 869a2b6..c8946fd 100644 --- a/library/opt/optparse.tcl +++ b/library/opt/optparse.tcl @@ -8,10 +8,10 @@ # on it. If your code does rely on this package you # may directly incorporate this code into your application. -package require Tcl 8.2 +package require Tcl 8.5- # When this version number changes, update the pkgIndex.tcl file # and the install directory in the Makefiles. -package provide opt 0.4.6 +package provide opt 0.4.7 namespace eval ::tcl { diff --git a/library/opt/pkgIndex.tcl b/library/opt/pkgIndex.tcl index 107d4c6..daf9aa9 100644 --- a/library/opt/pkgIndex.tcl +++ b/library/opt/pkgIndex.tcl @@ -8,5 +8,5 @@ # script is sourced, the variable $dir must contain the # full path name of this file's directory. -if {![package vsatisfies [package provide Tcl] 8.2]} {return} -package ifneeded opt 0.4.6 [list source [file join $dir optparse.tcl]] +if {![package vsatisfies [package provide Tcl] 8.5-]} {return} +package ifneeded opt 0.4.7 [list source [file join $dir optparse.tcl]] |