diff options
author | dgp <dgp@users.sourceforge.net> | 2006-04-05 16:52:56 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2006-04-05 16:52:56 (GMT) |
commit | aaa1189113f81fcab92db0bee35e77a0ef03e5d9 (patch) | |
tree | 6c243724ca1c5956ba8de54c4fa636b8204072a0 /library | |
parent | 50d05904e2652689f8352c49ba3ea9b256922bb0 (diff) | |
download | tcl-aaa1189113f81fcab92db0bee35e77a0ef03e5d9.zip tcl-aaa1189113f81fcab92db0bee35e77a0ef03e5d9.tar.gz tcl-aaa1189113f81fcab92db0bee35e77a0ef03e5d9.tar.bz2 |
* library/reg/pkgIndex.tcl: Bump to registry 1.2 because
* win/tclWinReg.c: Registry_Unload() is a new public routine
* win/Makefile.in: compared to the 1.1.* releases.
* win/configure.in: Bump package version numbers.
* win/configure: autoconf 2.59
Diffstat (limited to 'library')
-rwxr-xr-x | library/reg/pkgIndex.tcl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/library/reg/pkgIndex.tcl b/library/reg/pkgIndex.tcl index e1cd23a..eb55125 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.6 \ - [list load [file join $dir tclreg11g.dll] registry] + package ifneeded registry 1.2 \ + [list load [file join $dir tclreg12g.dll] registry] } else { - package ifneeded registry 1.1.6 \ - [list load [file join $dir tclreg11.dll] registry] + package ifneeded registry 1.2 \ + [list load [file join $dir tclreg12.dll] registry] } |