diff options
author | dgp <dgp@users.sourceforge.net> | 2022-10-27 00:21:08 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2022-10-27 00:21:08 (GMT) |
commit | 6e31c76fb593de7fa92ea95abbc35b65e46decf8 (patch) | |
tree | 47e8c7c53abbbf49154a8e5aca41a27b60284e78 /library | |
parent | a77ee23ce2c80e809b4687411bf25b49f036e5ef (diff) | |
parent | 27f09fdb5ced601cb23ffc86b882c29a3ee7dd21 (diff) | |
download | tcl-6e31c76fb593de7fa92ea95abbc35b65e46decf8.zip tcl-6e31c76fb593de7fa92ea95abbc35b65e46decf8.tar.gz tcl-6e31c76fb593de7fa92ea95abbc35b65e46decf8.tar.bz2 |
merge 8.6
Diffstat (limited to 'library')
-rw-r--r-- | library/platform/pkgIndex.tcl | 2 | ||||
-rw-r--r-- | library/platform/platform.tcl | 13 |
2 files changed, 13 insertions, 2 deletions
diff --git a/library/platform/pkgIndex.tcl b/library/platform/pkgIndex.tcl index de28fd1..e7029d0 100644 --- a/library/platform/pkgIndex.tcl +++ b/library/platform/pkgIndex.tcl @@ -1,3 +1,3 @@ -package ifneeded platform 1.0.18 [list source [file join $dir platform.tcl]] +package ifneeded platform 1.0.19 [list source [file join $dir platform.tcl]] package ifneeded platform::shell 1.1.4 [list source [file join $dir shell.tcl]] diff --git a/library/platform/platform.tcl b/library/platform/platform.tcl index 752f069..acaebf2 100644 --- a/library/platform/platform.tcl +++ b/library/platform/platform.tcl @@ -364,6 +364,17 @@ proc ::platform::patterns {id} { foreach {major minor} [split $v .] break set res {} + if {$major eq 13} { + # Add 13.0 to 13.minor to patterns. + for {set j $minor} {$j >= 0} {incr j -1} { + lappend res macosx${major}.${j}-${cpu} + foreach a $alt { + lappend res macosx${major}.${j}-$a + } + } + set major 12 + set minor 5 + } if {$major eq 12} { # Add 12.0 to 12.minor to patterns. for {set j $minor} {$j >= 0} {incr j -1} { @@ -420,7 +431,7 @@ proc ::platform::patterns {id} { # ### ### ### ######### ######### ######### ## Ready -package provide platform 1.0.18 +package provide platform 1.0.19 # ### ### ### ######### ######### ######### ## Demo application |