diff options
Diffstat (limited to 'library/dde1.1/pkgIndex.tcl')
-rw-r--r-- | library/dde1.1/pkgIndex.tcl | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/library/dde1.1/pkgIndex.tcl b/library/dde1.1/pkgIndex.tcl index b953f17..17f09e9 100644 --- a/library/dde1.1/pkgIndex.tcl +++ b/library/dde1.1/pkgIndex.tcl @@ -1 +1,5 @@ -package ifneeded dde 1.1 "load [list [file join $dir tcldde83.dll]] dde"
+if {[info exists tcl_platform(debug)]} {
+ package ifneeded dde 1.1 [list load [file join $dir tcldde83d.dll] dde]
+} else {
+ package ifneeded dde 1.1 [list load [file join $dir tcldde83.dll] dde]
+}
|