diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-04-11 20:34:07 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-04-11 20:34:07 (GMT) |
commit | 9d4179718912cd5ef32f406e874276806b726f8d (patch) | |
tree | 020db13467ebfca10c4f307cd55644e9f167a694 /library/dde | |
parent | e213e8f1ae973b67d7477c68cae573a9f4badd62 (diff) | |
parent | de998ed83562aa3d55567d0eed70ee1c44d594a2 (diff) | |
download | tcl-9d4179718912cd5ef32f406e874276806b726f8d.zip tcl-9d4179718912cd5ef32f406e874276806b726f8d.tar.gz tcl-9d4179718912cd5ef32f406e874276806b726f8d.tar.bz2 |
[Bug 3448512]: clock scan "1958-01-01" fails only in debug compilation
Diffstat (limited to 'library/dde')
-rw-r--r-- | library/dde/pkgIndex.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/dde/pkgIndex.tcl b/library/dde/pkgIndex.tcl index 3125ada..194e4cd 100644 --- a/library/dde/pkgIndex.tcl +++ b/library/dde/pkgIndex.tcl @@ -1,6 +1,6 @@ -if {![package vsatisfies [package provide Tcl] 8]} {return} +if {![package vsatisfies [package provide Tcl] 8.5]} {return} if {[string compare $::tcl_platform(platform) windows]} {return} -if {[info exists ::tcl_platform(debug)]} { +if {[::tcl::pkgconfig get debug]} { package ifneeded dde 1.3.2 [list load [file join $dir tcldde13g.dll] dde] } else { package ifneeded dde 1.3.2 [list load [file join $dir tcldde13.dll] dde] |