diff options
author | dgp <dgp@users.sourceforge.net> | 2006-09-11 03:54:08 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2006-09-11 03:54:08 (GMT) |
commit | 79f6a0d9d0e4ea44300ce7ae1c824649615833fc (patch) | |
tree | 2f868df37f243fb208d147c9a2fea5d13c0c9756 /win | |
parent | ae2548db3cd06c83405be9c3edb975c515d16cc2 (diff) | |
download | tcl-79f6a0d9d0e4ea44300ce7ae1c824649615833fc.zip tcl-79f6a0d9d0e4ea44300ce7ae1c824649615833fc.tar.gz tcl-79f6a0d9d0e4ea44300ce7ae1c824649615833fc.tar.bz2 |
* doc/tcltest.n: Bump to version tcltest 2.3.0 to account
* library/tcltest/pkgIndex.tcl: for new "-verbose line" feature.
* library/tcltest/tcltest.tcl:
* unix/Makefile.in:
* win/Makefile.in:
* win/makefile.bc:
* win/makefile.vc:
Diffstat (limited to 'win')
-rw-r--r-- | win/Makefile.in | 6 | ||||
-rw-r--r-- | win/makefile.bc | 8 | ||||
-rw-r--r-- | win/makefile.vc | 6 |
3 files changed, 10 insertions, 10 deletions
diff --git a/win/Makefile.in b/win/Makefile.in index d9817a2..5b573fb 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.102 2006/08/21 09:02:14 dkf Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.103 2006/09/11 03:54:09 dgp Exp $ VERSION = @TCL_VERSION@ @@ -653,8 +653,8 @@ install-libraries: libraries install-tzdata install-msgs done; @echo "Installing package msgcat 1.4.1 as a Tcl Module"; @$(COPY) $(ROOT_DIR)/library/msgcat/msgcat.tcl $(SCRIPT_INSTALL_DIR)/../tcl8/8.5/msgcat-1.4.1.tm; - @echo "Installing package tcltest 2.2.8 as a Tcl Module"; - @$(COPY) $(ROOT_DIR)/library/tcltest/tcltest.tcl $(SCRIPT_INSTALL_DIR)/../tcl8/8.3/tcltest-2.2.8.tm; + @echo "Installing package tcltest 2.3.0 as a Tcl Module"; + @$(COPY) $(ROOT_DIR)/library/tcltest/tcltest.tcl $(SCRIPT_INSTALL_DIR)/../tcl8/8.3/tcltest-2.3.0.tm; @echo "Installing encodings"; @for i in $(ROOT_DIR)/library/encoding/*.enc ; do \ $(COPY) "$$i" "$(SCRIPT_INSTALL_DIR)/encoding"; \ diff --git a/win/makefile.bc b/win/makefile.bc index 819bca2..a42a06b 100644 --- a/win/makefile.bc +++ b/win/makefile.bc @@ -435,10 +435,10 @@ install-libraries: -@$(MKDIR) "$(SCRIPT_INSTALL_DIR)\msgcat1.4" -@copy "$(ROOT)\library\msgcat\msgcat.tcl" "$(SCRIPT_INSTALL_DIR)\msgcat1.4" -@copy "$(ROOT)\library\msgcat\pkgIndex.tcl" "$(SCRIPT_INSTALL_DIR)\msgcat1.4" - @echo installing tcltest2.2 - -@$(MKDIR) "$(SCRIPT_INSTALL_DIR)\tcltest2.2" - -@copy "$(ROOT)\library\tcltest\tcltest.tcl" "$(SCRIPT_INSTALL_DIR)\tcltest2.2" - -@copy "$(ROOT)\library\tcltest\pkgIndex.tcl" "$(SCRIPT_INSTALL_DIR)\tcltest2.2" + @echo installing tcltest2.3 + -@$(MKDIR) "$(SCRIPT_INSTALL_DIR)\tcltest2.3" + -@copy "$(ROOT)\library\tcltest\tcltest.tcl" "$(SCRIPT_INSTALL_DIR)\tcltest2.3" + -@copy "$(ROOT)\library\tcltest\pkgIndex.tcl" "$(SCRIPT_INSTALL_DIR)\tcltest2.3" @echo installing $(TCLDDEDLLNAME) -@$(MKDIR) "$(SCRIPT_INSTALL_DIR)\dde1.3" -@copy "$(TCLDDEDLL)" "$(SCRIPT_INSTALL_DIR)\dde1.3" diff --git a/win/makefile.vc b/win/makefile.vc index d238937..8230069 100644 --- a/win/makefile.vc +++ b/win/makefile.vc @@ -12,7 +12,7 @@ # Copyright (c) 2001-2004 David Gravereaux. # #------------------------------------------------------------------------------ -# RCS: @(#) $Id: makefile.vc,v 1.143 2005/12/13 22:43:18 kennykb Exp $ +# RCS: @(#) $Id: makefile.vc,v 1.144 2006/09/11 03:54:09 dgp Exp $ #------------------------------------------------------------------------------ # Check to see we are configured to build with MSVC (MSDEVDIR or MSVCDIR) @@ -996,9 +996,9 @@ install-libraries: tclConfig install-msgs install-tzdata @echo installing msgcat1.4 @$(CPY) "$(ROOT)\library\msgcat\*.tcl" \ "$(SCRIPT_INSTALL_DIR)\msgcat1.4\" - @echo installing tcltest2.2 + @echo installing tcltest2.3 @$(CPY) "$(ROOT)\library\tcltest\*.tcl" \ - "$(SCRIPT_INSTALL_DIR)\tcltest2.2\" + "$(SCRIPT_INSTALL_DIR)\tcltest2.3\" @echo installing $(TCLDDELIBNAME) !if $(STATIC_BUILD) @$(CPY) "$(TCLDDELIB)" "$(LIB_INSTALL_DIR)\" |