diff options
author | andreas_kupries <akupries@shaw.ca> | 2005-11-21 17:19:56 (GMT) |
---|---|---|
committer | andreas_kupries <akupries@shaw.ca> | 2005-11-21 17:19:56 (GMT) |
commit | 2c55225523503a689c000258c0a7a2f9054dadaa (patch) | |
tree | 8098bdf5c5c1fe2fb3d0e6a3b61ec58dd2366886 | |
parent | 0dfe0c9693046ad3717fbbe2682c80d0e0633cce (diff) | |
download | tcl-2c55225523503a689c000258c0a7a2f9054dadaa.zip tcl-2c55225523503a689c000258c0a7a2f9054dadaa.tar.gz tcl-2c55225523503a689c000258c0a7a2f9054dadaa.tar.bz2 |
* unix/Makefile.in (install-libraries): Updated Makefile to new
* win/Makefile.in (install-libraries): version of the http
package. This fixes the ifneeded/provide mismatch reported when
trying to require http. Should we maybe try to automatically
extract the version number from the http code to prevent future
breakage ?
This follows the update of the version number by dgp on Nov 15
(No entry found in the ChangeLog).
-rw-r--r-- | ChangeLog | 12 | ||||
-rw-r--r-- | unix/Makefile.in | 6 | ||||
-rw-r--r-- | win/Makefile.in | 6 |
3 files changed, 18 insertions, 6 deletions
@@ -1,3 +1,15 @@ +2005-11-21 Andreas Kupries <andreask@activestate.com> + + * unix/Makefile.in (install-libraries): Updated Makefile to new + * win/Makefile.in (install-libraries): version of the http + package. This fixes the ifneeded/provide mismatch reported when + trying to require http. Should we maybe try to automatically + extract the version number from the http code to prevent future + breakage ? + + This follows the update of the version number by dgp on Nov 15 + (No entry found in the ChangeLog). + 2005-11-20 Joe English <jenglish@users.sourceforge.net> * generic/tclStubLib.c: Don't set tclStubsPtr to 0 when diff --git a/unix/Makefile.in b/unix/Makefile.in index eed5caf..ded10ae 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -5,7 +5,7 @@ # "autoconf" program (constructs like "@foo@" will get replaced in the # actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.176 2005/11/09 00:11:49 dkf Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.177 2005/11/21 17:19:56 andreas_kupries Exp $ VERSION = @TCL_VERSION@ MAJOR_VERSION = @TCL_MAJOR_VERSION@ @@ -776,8 +776,8 @@ install-libraries: libraries install-tzdata install-msgs do \ $(INSTALL_DATA) $$j $(SCRIPT_INSTALL_DIR)/http1.0; \ done; - @echo "Installing package http 2.5.1 as a Tcl Module"; - @$(INSTALL_DATA) $(TOP_DIR)/library/http/http.tcl $(SCRIPT_INSTALL_DIR)/../tcl8/8.2/http-2.5.1.tm; + @echo "Installing package http 2.5.2 as a Tcl Module"; + @$(INSTALL_DATA) $(TOP_DIR)/library/http/http.tcl $(SCRIPT_INSTALL_DIR)/../tcl8/8.2/http-2.5.2.tm; @echo "Installing library opt0.4 directory"; @for j in $(TOP_DIR)/library/opt/*.tcl ; \ do \ diff --git a/win/Makefile.in b/win/Makefile.in index 3a5cefc..14fe1a0 100644 --- a/win/Makefile.in +++ b/win/Makefile.in @@ -5,7 +5,7 @@ # "autoconf" program (constructs like "@foo@" will get replaced in the # actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.92 2005/10/08 14:42:54 dgp Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.93 2005/11/21 17:19:56 andreas_kupries Exp $ VERSION = @TCL_VERSION@ @@ -640,8 +640,8 @@ install-libraries: libraries install-tzdata install-msgs do \ $(COPY) "$$j" "$(SCRIPT_INSTALL_DIR)/http1.0"; \ done; - @echo "Installing package http 2.5.1 as a Tcl Module"; - @$(COPY) $(ROOT_DIR)/library/http/http.tcl $(SCRIPT_INSTALL_DIR)/../tcl8/8.2/http-2.5.1.tm; + @echo "Installing package http 2.5.2 as a Tcl Module"; + @$(COPY) $(ROOT_DIR)/library/http/http.tcl $(SCRIPT_INSTALL_DIR)/../tcl8/8.2/http-2.5.2.tm; @echo "Installing library opt0.4 directory"; @for j in $(ROOT_DIR)/library/opt/*.tcl; \ do \ |