You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
526 B
16 lines
526 B
# -*- tcl -*- |
|
# Tcl package index file, version 1.1 |
|
# |
|
|
|
if {![package vsatisfies [package provide Tcl] 8.6-]} {return} |
|
if {[string length [package provide Itcl]] && ![package vsatisfies [package provide Itcl] 4.1]} return |
|
if {[package vsatisfies [package provide Tcl] 9.0-]} { |
|
package ifneeded itk 4.2.5 \ |
|
[list load [file join $dir tcl9itk425.dll] Itk] |
|
} else { |
|
package ifneeded itk 4.2.5 \ |
|
[list load [file join $dir itk425.dll] Itk] |
|
} |
|
|
|
package ifneeded Itk 4.2.5 \ |
|
[list package require -exact itk 4.2.5]
|
|
|