diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-05-11 12:50:31 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-05-11 12:50:31 (GMT) |
commit | 2f53eeab0b9831c99ec00b1728bcd2821e3d46ea (patch) | |
tree | 4e88007e2a2f512bbc59ba2e3942efcf2daf35fd /library/dde/pkgIndex.tcl | |
parent | 8c7e557089e8b305b0ad128e095b446cddf9ecb3 (diff) | |
download | tcl-2f53eeab0b9831c99ec00b1728bcd2821e3d46ea.zip tcl-2f53eeab0b9831c99ec00b1728bcd2821e3d46ea.tar.gz tcl-2f53eeab0b9831c99ec00b1728bcd2821e3d46ea.tar.bz2 |
fix handling of closing '\0' for -binary datatip_106_impl
update dde version to 1.4.0
Diffstat (limited to 'library/dde/pkgIndex.tcl')
-rw-r--r-- | library/dde/pkgIndex.tcl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/library/dde/pkgIndex.tcl b/library/dde/pkgIndex.tcl index ce92028..1370567 100644 --- a/library/dde/pkgIndex.tcl +++ b/library/dde/pkgIndex.tcl @@ -1,7 +1,7 @@ -if {![package vsatisfies [package provide Tcl] 8.5]} return +if {![package vsatisfies [package provide Tcl] 8.4]} return if {[string compare [info sharedlibextension] .dll]} return if {[::tcl::pkgconfig get debug]} { - package ifneeded dde 1.3.3 [list load [file join $dir tcldde13g.dll] dde] + package ifneeded dde 1.4.0 [list load [file join $dir tcldde14g.dll] dde] } else { - package ifneeded dde 1.3.3 [list load [file join $dir tcldde13.dll] dde] + package ifneeded dde 1.4.0 [list load [file join $dir tcldde14.dll] dde] } |