diff options
author | hobbs <hobbs> | 1999-11-30 08:37:02 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 1999-11-30 08:37:02 (GMT) |
commit | d7393c5ccae5443faac4b81275778462c714ca12 (patch) | |
tree | e2ee8c6a1b3ceed265811755d99152741f1ee909 /library/dde | |
parent | f27b3b7ae4e9d68e55b5aa6670baa09156eb030c (diff) | |
download | tcl-d7393c5ccae5443faac4b81275778462c714ca12.zip tcl-d7393c5ccae5443faac4b81275778462c714ca12.tar.gz tcl-d7393c5ccae5443faac4b81275778462c714ca12.tar.bz2 |
* library/dde1.1/pkgIndex.tcl:
* library/reg1.0/pkgIndex.tcl: added supported for debugged
versions of the libraries
Diffstat (limited to 'library/dde')
-rw-r--r-- | library/dde/pkgIndex.tcl | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/library/dde/pkgIndex.tcl b/library/dde/pkgIndex.tcl index b953f17..17f09e9 100644 --- a/library/dde/pkgIndex.tcl +++ b/library/dde/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]
+}
|