summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2019-11-27 11:01:38 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2019-11-27 11:01:38 (GMT)
commitd9f8a230026664cc73add358b6c5985c7700af89 (patch)
treea9912fb4755e8d043a65eeac63cfb4b2abaa875e
parentd8a1ef082777292ede109a0ed919d8174d6929dd (diff)
downloadtcl-d9f8a230026664cc73add358b6c5985c7700af89.zip
tcl-d9f8a230026664cc73add358b6c5985c7700af89.tar.gz
tcl-d9f8a230026664cc73add358b6c5985c7700af89.tar.bz2
Proposed Windows installation code for cookiejar package
-rw-r--r--win/Makefile.in9
-rw-r--r--win/makefile.vc8
2 files changed, 17 insertions, 0 deletions
diff --git a/win/Makefile.in b/win/Makefile.in
index 51ac71c..327bea2 100644
--- a/win/Makefile.in
+++ b/win/Makefile.in
@@ -868,6 +868,15 @@ install-libraries: libraries install-tzdata install-msgs
do \
$(COPY) "$$j" "$(SCRIPT_INSTALL_DIR)/cookiejar0.1"; \
done;
+ @echo "Installing package cookiejar 0.1"
+ @for j in $(ROOT_DIR)/library/cookiejar/*.tcl; \
+ do \
+ $(COPY) "$$j" "$(SCRIPT_INSTALL_DIR)"/cookiejar0.1; \
+ done
+ @for j in $(ROOT_DIR)/library/cookiejar/*.txt.gz; \
+ do \
+ $(COPY) "$$j" "$(SCRIPT_INSTALL_DIR)"/cookiejar0.1; \
+ done
@echo "Installing package http 2.9.1 as a Tcl Module";
@$(COPY) $(ROOT_DIR)/library/http/http.tcl $(SCRIPT_INSTALL_DIR)/../tcl8/8.6/http-2.9.1.tm;
@echo "Installing library opt0.4 directory";
diff --git a/win/makefile.vc b/win/makefile.vc
index b943ed8..12d8751 100644
--- a/win/makefile.vc
+++ b/win/makefile.vc
@@ -154,6 +154,9 @@ VERSION = $(TCL_MAJOR_VERSION)$(TCL_MINOR_VERSION)
!if [echo PKG_HTTP_VER = \>> versions.vc] \
&& [nmakehlp -V ..\library\http\pkgIndex.tcl http >> versions.vc]
!endif
+!if [echo PKG_COOKIEJAR_VER = \>> versions.vc] \
+ && [nmakehlp -V ..\library\cookiejar\pkgIndex.tcl cookiejar >> versions.vc]
+!endif
!if [echo PKG_TCLTEST_VER = \>> versions.vc] \
&& [nmakehlp -V ..\library\tcltest\pkgIndex.tcl tcltest >> versions.vc]
!endif
@@ -932,6 +935,11 @@ install-libraries: tclConfig tcl-nmake install-msgs install-tzdata
@echo Installing package opt0.4 files to $(SCRIPT_INSTALL_DIR)/opt0.4/
@$(CPY) "$(ROOT)\library\opt0.4\*.tcl" \
"$(SCRIPT_INSTALL_DIR)\opt0.4\"
+ @echo Installing package cookiejar $(PKG_COOKIEJAR_VER) directory
+ @$(CPY) "$(ROOT)\library\cookiejar\*.tcl" \
+ "$(SCRIPT_INSTALL_DIR)\cookiejar$(PKG_COOKIEJAR_VER)\"
+ @$(CPY) "$(ROOT)\library\cookiejar\*.txt.gz" \
+ "$(SCRIPT_INSTALL_DIR)\cookiejar$(PKG_COOKIEJAR_VER)\"
@echo Installing package http $(PKG_HTTP_VER) as a Tcl Module
@$(COPY) "$(ROOT)\library\http\http.tcl" \
"$(SCRIPT_INSTALL_DIR)\..\tcl8\8.6\http-$(PKG_HTTP_VER).tm"