diff options
Diffstat (limited to 'win')
-rw-r--r-- | win/Makefile.in | 6 | ||||
-rw-r--r-- | win/makefile.vc | 10 |
2 files changed, 8 insertions, 8 deletions
diff --git a/win/Makefile.in b/win/Makefile.in index 8610d34..0c9f350 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.15 1999/07/13 22:23:44 redman Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.16 1999/07/20 00:11:56 hershey Exp $ VERSION = @TCL_VERSION@ @@ -409,7 +409,7 @@ install-libraries: else true; \ fi; \ done; - @for i in http1.0 http2.0 opt0.4 encoding msgcat1.0 tcltest1.0; \ + @for i in http1.0 http2.1 opt0.4 encoding msgcat1.0 tcltest1.0; \ do \ if [ ! -d $(SCRIPT_INSTALL_DIR)/$$i ] ; then \ echo "Making directory $(SCRIPT_INSTALL_DIR)/$$i"; \ @@ -427,7 +427,7 @@ install-libraries: echo "Installing $$i"; \ $(COPY) "$$i" "$(SCRIPT_INSTALL_DIR)"; \ done; - @for i in http2.0 http1.0 opt0.4 msgcat1.0 tcltest1.0; \ + @for i in http2.1 http1.0 opt0.4 msgcat1.0 tcltest1.0; \ do \ for j in $(ROOT_DIR)/library/$$i/*.tcl; \ do \ diff --git a/win/makefile.vc b/win/makefile.vc index f7a2a76..2fbd7dd 100644 --- a/win/makefile.vc +++ b/win/makefile.vc @@ -6,7 +6,7 @@ # Copyright (c) 1995-1996 Sun Microsystems, Inc. # Copyright (c) 1998-1999 by Scriptics Corporation. # -# RCS: @(#) $Id: makefile.vc,v 1.38 1999/07/13 22:23:45 redman Exp $ +# RCS: @(#) $Id: makefile.vc,v 1.39 1999/07/20 00:11:57 hershey Exp $ # Does not depend on the presence of any environment variables in # order to compile tcl; all needed information is derived from @@ -451,10 +451,10 @@ install-libraries: -@$(MKDIR) "$(SCRIPT_INSTALL_DIR)\http1.0" -@copy "$(ROOT)\library\http1.0\http.tcl" "$(SCRIPT_INSTALL_DIR)\http1.0" -@copy "$(ROOT)\library\http1.0\pkgIndex.tcl" "$(SCRIPT_INSTALL_DIR)\http1.0" - @echo installing http2.0 - -@$(MKDIR) "$(SCRIPT_INSTALL_DIR)\http2.0" - -@copy "$(ROOT)\library\http2.0\http.tcl" "$(SCRIPT_INSTALL_DIR)\http2.0" - -@copy "$(ROOT)\library\http2.0\pkgIndex.tcl" "$(SCRIPT_INSTALL_DIR)\http2.0" + @echo installing http2.1 + -@$(MKDIR) "$(SCRIPT_INSTALL_DIR)\http2.1" + -@copy "$(ROOT)\library\http2.1\http.tcl" "$(SCRIPT_INSTALL_DIR)\http2.1" + -@copy "$(ROOT)\library\http2.1\pkgIndex.tcl" "$(SCRIPT_INSTALL_DIR)\http2.1" @echo installing opt0.4 -@$(MKDIR) "$(SCRIPT_INSTALL_DIR)\opt0.4" -@copy "$(ROOT)\library\opt0.4\optparse.tcl" "$(SCRIPT_INSTALL_DIR)\opt0.4" |