diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-12-03 09:45:17 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-12-03 09:45:17 (GMT) |
commit | 910d0222de6f3bd8fdf3b7c061cdb89581b2f2df (patch) | |
tree | 97974e204df0e371017d1c22f8d128c6e97c0aa5 /library | |
parent | c387e380dea36d13e5809aeea05acb5fa1663830 (diff) | |
parent | a3322b06acaf0cf6fef649e67625c47bceb77305 (diff) | |
download | tcl-910d0222de6f3bd8fdf3b7c061cdb89581b2f2df.zip tcl-910d0222de6f3bd8fdf3b7c061cdb89581b2f2df.tar.gz tcl-910d0222de6f3bd8fdf3b7c061cdb89581b2f2df.tar.bz2 |
Extend "platform" package for msys2 -> platform 1.0.15
Diffstat (limited to 'library')
-rw-r--r-- | library/platform/pkgIndex.tcl | 2 | ||||
-rw-r--r-- | library/platform/platform.tcl | 5 |
2 files changed, 5 insertions, 2 deletions
diff --git a/library/platform/pkgIndex.tcl b/library/platform/pkgIndex.tcl index 5970a3f..46a0ed4 100644 --- a/library/platform/pkgIndex.tcl +++ b/library/platform/pkgIndex.tcl @@ -1,3 +1,3 @@ -package ifneeded platform 1.0.14 [list source [file join $dir platform.tcl]] +package ifneeded platform 1.0.15 [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 35a22a3..87d720b 100644 --- a/library/platform/platform.tcl +++ b/library/platform/platform.tcl @@ -97,6 +97,9 @@ proc ::platform::generic {} { cygwin* { set plat cygwin } + msys* { + set plat msystem + } windows { if {$tcl_platform(platform) == "unix"} { set plat cygwin @@ -378,7 +381,7 @@ proc ::platform::patterns {id} { # ### ### ### ######### ######### ######### ## Ready -package provide platform 1.0.14 +package provide platform 1.0.15 # ### ### ### ######### ######### ######### ## Demo application |