diff options
author | dgp <dgp@users.sourceforge.net> | 2001-08-09 01:06:42 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2001-08-09 01:06:42 (GMT) |
commit | d7c342a4ee3392e4a7f62257ef6906bc1c1a3d2f (patch) | |
tree | 4ea0ef33da47dbebe516c83ac83f355a695d6494 /library/tcltest/pkgIndex.tcl | |
parent | 280f05e70aff22b0058a6bbd878e84a12d01dcad (diff) | |
download | tcl-d7c342a4ee3392e4a7f62257ef6906bc1c1a3d2f.zip tcl-d7c342a4ee3392e4a7f62257ef6906bc1c1a3d2f.tar.gz tcl-d7c342a4ee3392e4a7f62257ef6906bc1c1a3d2f.tar.bz2 |
Added checks for package dependencies.
Bumped patchlevels of changed packages: http 2.3.2, msgcat 1.2.2,
opt 0.4.3, tcltest 2.0.1. [Patch 448931]
Diffstat (limited to 'library/tcltest/pkgIndex.tcl')
-rw-r--r-- | library/tcltest/pkgIndex.tcl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/library/tcltest/pkgIndex.tcl b/library/tcltest/pkgIndex.tcl index da93644..43e4656 100644 --- a/library/tcltest/pkgIndex.tcl +++ b/library/tcltest/pkgIndex.tcl @@ -8,4 +8,5 @@ # script is sourced, the variable $dir must contain the # full path name of this file's directory. -package ifneeded tcltest 2.0 [list source [file join $dir tcltest.tcl]] +if {![package vsatisfies [package provide Tcl] 8.3]} {return} +package ifneeded tcltest 2.0.1 [list source [file join $dir tcltest.tcl]] |