Artifact d64d5caca7db50fac772275606f0a6f42eecc723:
- File pkgIndex.tcl.in — part of check-in [9c0b46c781] at 2016-12-06 20:56:26 on branch tls-1-7 — Added a fallback for Tcl 8.4 with minimal support for loading the package (user: rkeene, size: 515) [annotate] [blame] [check-ins using] [more...]
if {[package vsatisfies [package present Tcl] 8.5]} { package ifneeded tls @PACKAGE_VERSION@ [list apply {{dir} { if {{@TCLEXT_BUILD@} eq "static"} { load {} Tls } else { load [file join $dir tcltls.@SHOBJEXT@] Tls } set tlsTclInitScript [file join $dir tls.tcl] if {[file exists $tlsTclInitScript]} { source $tlsTclInitScript } }} $dir] } elseif {[package vsatisfies [package present Tcl] 8.4]} { package ifneeded tls @PACKAGE_VERSION@ [list load [file join $dir tcltls.@SHOBJEXT@] Tls] }