diff options
Diffstat (limited to 'library/dde/pkgIndex.tcl')
-rw-r--r-- | library/dde/pkgIndex.tcl | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/library/dde/pkgIndex.tcl b/library/dde/pkgIndex.tcl index 4cf73d0..109fe0d 100644 --- a/library/dde/pkgIndex.tcl +++ b/library/dde/pkgIndex.tcl @@ -1,7 +1,9 @@ if {([info commands ::tcl::pkgconfig] eq "") || ([info sharedlibextension] ne ".dll")} return -if {[::tcl::pkgconfig get debug]} { - package ifneeded dde 1.4.0 [list load [file join $dir tcldde14g.dll] dde] +if {[package vsatisfies [package provide Tcl] 9.0]} { + package ifneeded dde 1.4.0 [list load [file join $dir dde.dll] dde] +} elseif {[::tcl::pkgconfig get debug]} { + package ifneeded dde 1.4.0 [list load [file join $dir tcldde14g.dll] dde] } else { package ifneeded dde 1.4.0 [list load [file join $dir tcldde14.dll] dde] } |