diff options
author | patthoyts <patthoyts@users.sourceforge.net> | 2004-03-04 15:10:41 (GMT) |
---|---|---|
committer | patthoyts <patthoyts@users.sourceforge.net> | 2004-03-04 15:10:41 (GMT) |
commit | c5e44485d15e28508cd8e8a7c7d6da2a6e777888 (patch) | |
tree | bd9f3d0e20a77186d2f0628ccca5456059cbc8e2 /library/reg | |
parent | 91efcbd1bca5f810db5a35238d96dbf3c6738f30 (diff) | |
download | tcl-c5e44485d15e28508cd8e8a7c7d6da2a6e777888.zip tcl-c5e44485d15e28508cd8e8a7c7d6da2a6e777888.tar.gz tcl-c5e44485d15e28508cd8e8a7c7d6da2a6e777888.tar.bz2 |
Added TIP #100 support to the registry package (patch #903831)
This provides a Windows test of the TIP #100 mechanism and
a sample to show how unloading an extension can be done.
Diffstat (limited to 'library/reg')
-rwxr-xr-x | library/reg/pkgIndex.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/reg/pkgIndex.tcl b/library/reg/pkgIndex.tcl index 55775f2..61c1d94 100755 --- a/library/reg/pkgIndex.tcl +++ b/library/reg/pkgIndex.tcl @@ -1,9 +1,9 @@ if {![package vsatisfies [package provide Tcl] 8]} {return} if {[string compare $::tcl_platform(platform) windows]} {return} if {[info exists ::tcl_platform(debug)]} { - package ifneeded registry 1.1.3 \ + package ifneeded registry 1.1.4 \ [list load [file join $dir tclreg11g.dll] registry] } else { - package ifneeded registry 1.1.3 \ + package ifneeded registry 1.1.4 \ [list load [file join $dir tclreg11.dll] registry] } |