diff options
author | dgp <dgp@users.sourceforge.net> | 2006-12-05 15:36:12 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2006-12-05 15:36:12 (GMT) |
commit | 7c22ad04aa281f88dbf8b20774d7fdd84d570284 (patch) | |
tree | dc0d31dcd5395b5b76b540c828eb341594918bd4 /generic/tclPkg.c | |
parent | 72c5eb5081e251714a3af49a55ebcd9ffd17b123 (diff) | |
download | tcl-7c22ad04aa281f88dbf8b20774d7fdd84d570284.zip tcl-7c22ad04aa281f88dbf8b20774d7fdd84d570284.tar.gz tcl-7c22ad04aa281f88dbf8b20774d7fdd84d570284.tar.bz2 |
* generic/tclPkg.c: When no requirements are supplied to a
* tests/pkg.test: [package require $pkg] and [package unknown]
is invoked to find a satisfying package, pass the requirement argument
"0-" (which means all versions are acceptable). This permits a
registered [package unknown] command to call
[package vsatisfies $testVersion {*}$args] without any special
handling of the empty $args case. This fixes/avoids a bug in
[::tcl::tm::UnknownHandler] that was causing old TM versions to
be provided in preference to newer TM versions. Thanks to Julian
Noble for discovering the issue.
Diffstat (limited to 'generic/tclPkg.c')
-rw-r--r-- | generic/tclPkg.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/generic/tclPkg.c b/generic/tclPkg.c index cecc634..5426bc7 100644 --- a/generic/tclPkg.c +++ b/generic/tclPkg.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclPkg.c,v 1.25 2006/11/15 20:08:45 dgp Exp $ + * RCS: @(#) $Id: tclPkg.c,v 1.26 2006/12/05 15:36:12 dgp Exp $ * * TIP #268. * Heavily rewritten to handle the extend version numbers, and extended @@ -1698,6 +1698,8 @@ AddRequirementsToDString( Tcl_DStringAppend(dsPtr, " ", 1); Tcl_DStringAppend(dsPtr, TclGetString(reqv[i]), -1); } + } else { + Tcl_DStringAppend(dsPtr, " 0-", -1); } } |