diff options
author | dgp <dgp@noemail.net> | 2008-08-11 21:58:03 (GMT) |
---|---|---|
committer | dgp <dgp@noemail.net> | 2008-08-11 21:58:03 (GMT) |
commit | 21fca465448e55c94ab9af00baf99d45e9f84732 (patch) | |
tree | 27899872495c415858f7746804c1275fe7d0aa50 /library | |
parent | 4cd81b86c61554caa3064c51c6ef8e00db753622 (diff) | |
download | tcl-21fca465448e55c94ab9af00baf99d45e9f84732.zip tcl-21fca465448e55c94ab9af00baf99d45e9f84732.tar.gz tcl-21fca465448e55c94ab9af00baf99d45e9f84732.tar.bz2 |
* library/http/http.tcl: Remove 8.5 requirement.
* library/http/pkgIndex.tcl:
* unix/Makefile.in:
* win/Makefile.in:
* win/makefile.vc:
FossilOrigin-Name: 8b417ebe570987da3a2cb5950cbcb1cb2c1459a5
Diffstat (limited to 'library')
-rw-r--r-- | library/http/http.tcl | 4 | ||||
-rw-r--r-- | library/http/pkgIndex.tcl | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/library/http/http.tcl b/library/http/http.tcl index ef0817c..046329b 100644 --- a/library/http/http.tcl +++ b/library/http/http.tcl @@ -8,9 +8,9 @@ # See the file "license.terms" for information on usage and redistribution of # this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: http.tcl,v 1.70 2008/08/11 21:29:47 patthoyts Exp $ +# RCS: @(#) $Id: http.tcl,v 1.71 2008/08/11 21:58:07 dgp Exp $ -package require Tcl 8.5.0 +package require Tcl 8.4 # Keep this in sync with pkgIndex.tcl and with the install directories # in Makefiles package provide http 2.7.1 diff --git a/library/http/pkgIndex.tcl b/library/http/pkgIndex.tcl index 7263414..932017a 100644 --- a/library/http/pkgIndex.tcl +++ b/library/http/pkgIndex.tcl @@ -1,4 +1,4 @@ # Tcl package index file, version 1.1 -if {![package vsatisfies [package provide Tcl] 8.5.0]} {return} +if {![package vsatisfies [package provide Tcl] 8.4]} {return} package ifneeded http 2.7.1 [list tclPkgSetup $dir http 2.7.1 {{http.tcl source {::http::config ::http::formatQuery ::http::geturl ::http::reset ::http::wait ::http::register ::http::unregister ::http::mapReply}}}] |