diff options
author | dgp <dgp@users.sourceforge.net> | 2008-08-11 21:57:09 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2008-08-11 21:57:09 (GMT) |
commit | d71a4ef788dfdf9424cc5b62683ac16f3be39970 (patch) | |
tree | aca537cb1cdf3b6f7f270b8e2fc6af50b371c2c7 /library/http | |
parent | df55292554aa4c92a18f5fe3551b94d990d95ebe (diff) | |
download | tcl-d71a4ef788dfdf9424cc5b62683ac16f3be39970.zip tcl-d71a4ef788dfdf9424cc5b62683ac16f3be39970.tar.gz tcl-d71a4ef788dfdf9424cc5b62683ac16f3be39970.tar.bz2 |
* library/http/http.tcl: Remove 8.5 requirement.
* library/http/pkgIndex.tcl:
* unix/Makefile.in:
* win/Makefile.in:
* win/makefile.vc:
Diffstat (limited to 'library/http')
-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 d5b299d..32c5309 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.67.2.3 2008/08/11 21:31:11 patthoyts Exp $ +# RCS: @(#) $Id: http.tcl,v 1.67.2.4 2008/08/11 21:57:14 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}}}] |