diff options
author | andreas_kupries <akupries@shaw.ca> | 2010-05-07 20:16:50 (GMT) |
---|---|---|
committer | andreas_kupries <akupries@shaw.ca> | 2010-05-07 20:16:50 (GMT) |
commit | 4d121f611d686f514965d65ee8fc91fb882824e3 (patch) | |
tree | 8376e7d1f15d316240f54e73c771bed21a42d17d /library | |
parent | 287b160a61d09c34c6e579e96552e2bb361058cc (diff) | |
download | tcl-4d121f611d686f514965d65ee8fc91fb882824e3.zip tcl-4d121f611d686f514965d65ee8fc91fb882824e3.tar.gz tcl-4d121f611d686f514965d65ee8fc91fb882824e3.tar.bz2 |
* library/platform/platform.tcl: Fix cpu name for Solaris/Intel 64bit.
* library/platform/pkgIndex.tcl: Package updated to version 1.0.8.
* unix/Makefile.in:
* win/Makefile.in:
Diffstat (limited to 'library')
-rw-r--r-- | library/platform/pkgIndex.tcl | 2 | ||||
-rw-r--r-- | library/platform/platform.tcl | 9 |
2 files changed, 8 insertions, 3 deletions
diff --git a/library/platform/pkgIndex.tcl b/library/platform/pkgIndex.tcl index 69ca721..808f995 100644 --- a/library/platform/pkgIndex.tcl +++ b/library/platform/pkgIndex.tcl @@ -1,3 +1,3 @@ -package ifneeded platform 1.0.7 [list source [file join $dir platform.tcl]] +package ifneeded platform 1.0.8 [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 838ceec..370c48a 100644 --- a/library/platform/platform.tcl +++ b/library/platform/platform.tcl @@ -103,7 +103,12 @@ proc ::platform::generic {} { } sunos { set plat solaris - if {![string match "ia64*" $cpu]} { + if {[string match "ix86" $cpu]} { + if {$tcl_platform(wordSize) == 8} { + set cpu x86_64 + } + } elseif {![string match "ia64*" $cpu]} { + # sparc if {$tcl_platform(wordSize) == 8} { append cpu 64 } @@ -309,7 +314,7 @@ proc ::platform::patterns {id} { # ### ### ### ######### ######### ######### ## Ready -package provide platform 1.0.7 +package provide platform 1.0.8 # ### ### ### ######### ######### ######### ## Demo application |