summaryrefslogtreecommitdiffstats
path: root/library/dde
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2022-11-29 16:05:33 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2022-11-29 16:05:33 (GMT)
commit6d6996d99fb8dc3566f23a3b6fa22dfb0bda0a16 (patch)
tree1213b14637736aa3f29ae39c21314720c8ceaf21 /library/dde
parent11af978f519524d92ce53cc5fbed1d3512ce08cb (diff)
downloadtcl-6d6996d99fb8dc3566f23a3b6fa22dfb0bda0a16.zip
tcl-6d6996d99fb8dc3566f23a3b6fa22dfb0bda0a16.tar.gz
tcl-6d6996d99fb8dc3566f23a3b6fa22dfb0bda0a16.tar.bz2
make Windows dde (-> 1.4.5) and registry (-> 1.3.7) extensions ready for the Tcl 9.0 era.
Diffstat (limited to 'library/dde')
-rw-r--r--library/dde/pkgIndex.tcl6
1 files changed, 3 insertions, 3 deletions
diff --git a/library/dde/pkgIndex.tcl b/library/dde/pkgIndex.tcl
index 18ac517..ace1681 100644
--- a/library/dde/pkgIndex.tcl
+++ b/library/dde/pkgIndex.tcl
@@ -1,12 +1,12 @@
if {[info sharedlibextension] != ".dll"} return
if {[package vsatisfies [package provide Tcl] 9.0-]} {
- package ifneeded dde 1.4.4 \
+ package ifneeded dde 1.4.5 \
[list load [file join $dir tcl9dde14.dll] Dde]
} elseif {![package vsatisfies [package provide Tcl] 8.7]
&& [::tcl::pkgconfig get debug]} {
- package ifneeded dde 1.4.4 \
+ package ifneeded dde 1.4.5 \
[list load [file join $dir tcldde14g.dll] Dde]
} else {
- package ifneeded dde 1.4.4 \
+ package ifneeded dde 1.4.5 \
[list load [file join $dir tcldde14.dll] Dde]
}