diff options
author | Kevin B Kenny <kennykb@acm.org> | 2003-03-23 01:34:40 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2003-03-23 01:34:40 (GMT) |
commit | 668371a4f1e9f90b7d69d55e27ebeef487148ddd (patch) | |
tree | 81bc46bfc7cd742cc26f5135b44467fa666d3cc4 /library | |
parent | 7397eb21b5546e2f2db642b3a7fda20d24bfd70b (diff) | |
download | tcl-668371a4f1e9f90b7d69d55e27ebeef487148ddd.zip tcl-668371a4f1e9f90b7d69d55e27ebeef487148ddd.tar.gz tcl-668371a4f1e9f90b7d69d55e27ebeef487148ddd.tar.bz2 |
Fixed a bug where [package require dde] or [package require registry]
attempted to load the release version of the DLL into a debug
build. [Bug 708218] Thanks to Joe Mistachkin for the patch.
Diffstat (limited to 'library')
-rw-r--r-- | library/dde/pkgIndex.tcl | 2 | ||||
-rwxr-xr-x | library/reg/pkgIndex.tcl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/library/dde/pkgIndex.tcl b/library/dde/pkgIndex.tcl index b651038..49201f4 100644 --- a/library/dde/pkgIndex.tcl +++ b/library/dde/pkgIndex.tcl @@ -1,5 +1,5 @@ if {![package vsatisfies [package provide Tcl] 8]} {return} -if {[info exists tcl_platform(debug)]} { +if {[info exists ::tcl_platform(debug)]} { package ifneeded dde 1.2.1 [list load [file join $dir tcldde12g.dll] dde] } else { package ifneeded dde 1.2.1 [list load [file join $dir tcldde12.dll] dde] diff --git a/library/reg/pkgIndex.tcl b/library/reg/pkgIndex.tcl index d4bd27b..230d120 100755 --- a/library/reg/pkgIndex.tcl +++ b/library/reg/pkgIndex.tcl @@ -1,5 +1,5 @@ if {![package vsatisfies [package provide Tcl] 8]} {return} -if {[info exists tcl_platform(debug)]} { +if {[info exists ::tcl_platform(debug)]} { package ifneeded registry 1.1.1 \ [list load [file join $dir tclreg11g.dll] registry] } else { |