From d768d45269fd4e4b6012d73d8c27390cd81c84df Mon Sep 17 00:00:00 2001 From: dgp Date: Tue, 20 Aug 2002 15:33:31 +0000 Subject: * README: Bumped version number to 8.4b3 to distinguish * generic/tcl.h: HEAD from the 8.4b2 release. * tools/tcl.wse.in: * unix/configure.in: * unix/tcl.spec: * win/README.binary: * win/configure.in: * unix/configure: autoconf * win/configure: * library/http/http.tcl: Corrected installation directory of * library/msgcat/msgcat.tcl: the package tcltest 2.2. Added * library/opt/optparse.tcl: comments in other packages to remind * library/tcltest/tcltest.tcl: that installation directories need * unix/Makefile.in: updates to match increasing version * win/Makefile.in: numbers. [Bug 597450] * win/makefile.bc: * win/makefile.vc: --- ChangeLog | 22 ++++++++++++++++++++++ README | 4 ++-- generic/tcl.h | 6 +++--- library/http/http.tcl | 3 ++- library/msgcat/msgcat.tcl | 4 +++- library/opt/optparse.tcl | 4 +++- library/tcltest/tcltest.tcl | 5 ++++- tools/tcl.wse.in | 2 +- unix/Makefile.in | 8 ++++---- unix/configure | 2 +- unix/configure.in | 4 ++-- unix/tcl.spec | 4 ++-- win/Makefile.in | 8 ++++---- win/README.binary | 4 ++-- win/configure | 2 +- win/configure.in | 4 ++-- win/makefile.bc | 8 ++++---- win/makefile.vc | 6 +++--- 18 files changed, 65 insertions(+), 35 deletions(-) diff --git a/ChangeLog b/ChangeLog index 1eeff6f..e391f93 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,25 @@ +2002-08-20 Don Porter + + * README: Bumped version number to 8.4b3 to distinguish + * generic/tcl.h: HEAD from the 8.4b2 release. + * tools/tcl.wse.in: + * unix/configure.in: + * unix/tcl.spec: + * win/README.binary: + * win/configure.in: + + * unix/configure: autoconf + * win/configure: + + * library/http/http.tcl: Corrected installation directory of + * library/msgcat/msgcat.tcl: the package tcltest 2.2. Added + * library/opt/optparse.tcl: comments in other packages to remind + * library/tcltest/tcltest.tcl: that installation directories need + * unix/Makefile.in: updates to match increasing version + * win/Makefile.in: numbers. [Bug 597450] + * win/makefile.bc: + * win/makefile.vc: + 2002-08-19 Andreas Kupries * unix/tclUnixTest.c (TestfilehandlerCmd): Changed diff --git a/README b/README index 903b8f8..912cf3a 100644 --- a/README +++ b/README @@ -1,11 +1,11 @@ README: Tcl - This is the Tcl 8.4b2 source distribution. + This is the Tcl 8.4b3 source distribution. Tcl/Tk is also available through NetCVS: http://tcl.sourceforge.net/ You can get any source release of Tcl from the file distributions link at the above URL. -RCS: @(#) $Id: README,v 1.43 2002/07/14 17:29:01 dgp Exp $ +RCS: @(#) $Id: README,v 1.44 2002/08/20 15:33:32 dgp Exp $ Contents -------- diff --git a/generic/tcl.h b/generic/tcl.h index 3bf2ae0..8de3c7e 100644 --- a/generic/tcl.h +++ b/generic/tcl.h @@ -13,7 +13,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tcl.h,v 1.139 2002/08/05 03:24:40 dgp Exp $ + * RCS: @(#) $Id: tcl.h,v 1.140 2002/08/20 15:33:32 dgp Exp $ */ #ifndef _TCL @@ -57,10 +57,10 @@ extern "C" { #define TCL_MAJOR_VERSION 8 #define TCL_MINOR_VERSION 4 #define TCL_RELEASE_LEVEL TCL_BETA_RELEASE -#define TCL_RELEASE_SERIAL 2 +#define TCL_RELEASE_SERIAL 3 #define TCL_VERSION "8.4" -#define TCL_PATCH_LEVEL "8.4b2" +#define TCL_PATCH_LEVEL "8.4b3" /* * The following definitions set up the proper options for Windows diff --git a/library/http/http.tcl b/library/http/http.tcl index 3cc0640..ed64ac9 100644 --- a/library/http/http.tcl +++ b/library/http/http.tcl @@ -9,7 +9,7 @@ # 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.41 2002/02/05 17:08:04 dgp Exp $ +# RCS: @(#) $Id: http.tcl,v 1.42 2002/08/20 15:33:32 dgp Exp $ # Rough version history: # 1.0 Old http_get interface @@ -24,6 +24,7 @@ package require Tcl 8.2 # keep this in sync with pkgIndex.tcl +# and with the install directories in Makefiles package provide http 2.4.2 namespace eval http { diff --git a/library/msgcat/msgcat.tcl b/library/msgcat/msgcat.tcl index 771511f..13bf10d 100644 --- a/library/msgcat/msgcat.tcl +++ b/library/msgcat/msgcat.tcl @@ -10,9 +10,11 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: msgcat.tcl,v 1.16 2002/07/17 19:14:52 drh Exp $ +# RCS: @(#) $Id: msgcat.tcl,v 1.17 2002/08/20 15:33:32 dgp Exp $ package require Tcl 8.2 +# When the version number changes, be sure to update the pkgIndex.tcl file, +# and the installation directory in the Makefiles. package provide msgcat 1.3 namespace eval msgcat { diff --git a/library/opt/optparse.tcl b/library/opt/optparse.tcl index e710008..b329190 100644 --- a/library/opt/optparse.tcl +++ b/library/opt/optparse.tcl @@ -8,9 +8,11 @@ # on it. If your code does rely on this package you # may directly incorporate this code into your application. # -# RCS: @(#) $Id: optparse.tcl,v 1.6 2001/08/09 01:06:42 dgp Exp $ +# RCS: @(#) $Id: optparse.tcl,v 1.7 2002/08/20 15:33:32 dgp Exp $ package require Tcl 8 +# When this version number changes, update the pkgIndex.tcl file +# and the install directory in the Makefiles. package provide opt 0.4.3 namespace eval ::tcl { diff --git a/library/tcltest/tcltest.tcl b/library/tcltest/tcltest.tcl index 9f4b2dc..6bd2a5b 100644 --- a/library/tcltest/tcltest.tcl +++ b/library/tcltest/tcltest.tcl @@ -16,10 +16,13 @@ # Contributions from Don Porter, NIST, 2002. (not subject to US copyright) # All rights reserved. # -# RCS: @(#) $Id: tcltest.tcl,v 1.72 2002/08/05 22:36:00 dgp Exp $ +# RCS: @(#) $Id: tcltest.tcl,v 1.73 2002/08/20 15:33:33 dgp Exp $ package require Tcl 8.3 ;# uses [glob -directory] namespace eval tcltest { + + # When the version number changes, be sure to update the pkgIndex.tcl file, + # and the install directory in the Makefiles. variable Version 2.2 # Compatibility support for dumb variables defined in tcltest 1 diff --git a/tools/tcl.wse.in b/tools/tcl.wse.in index 5fe60f2..c2e9583 100644 --- a/tools/tcl.wse.in +++ b/tools/tcl.wse.in @@ -12,7 +12,7 @@ item: Global Log Pathname=%MAINDIR%\INSTALL.LOG Message Font=MS Sans Serif Font Size=8 - Disk Label=tcl8.4b2 + Disk Label=tcl8.4b3 Disk Filename=setup Patch Flags=0000000000000001 Patch Threshold=85 diff --git a/unix/Makefile.in b/unix/Makefile.in index 4e58d4a..0ae9013 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.112 2002/07/29 23:00:20 mdejong Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.113 2002/08/20 15:33:33 dgp Exp $ VERSION = @TCL_VERSION@ MAJOR_VERSION = @TCL_MAJOR_VERSION@ @@ -630,7 +630,7 @@ install-libraries: libraries else true; \ fi; \ done; - @for i in http2.4 http1.0 opt0.4 encoding msgcat1.3 tcltest2.1; \ + @for i in http2.4 http1.0 opt0.4 encoding msgcat1.3 tcltest2.2; \ do \ if [ ! -d $(SCRIPT_INSTALL_DIR)/$$i ] ; then \ echo "Making directory $(SCRIPT_INSTALL_DIR)/$$i"; \ @@ -673,10 +673,10 @@ install-libraries: libraries do \ $(INSTALL_DATA) $$j $(SCRIPT_INSTALL_DIR)/msgcat1.3; \ done; - @echo "Installing library tcltest2.1 directory"; + @echo "Installing library tcltest2.2 directory"; @for j in $(TOP_DIR)/library/tcltest/*.tcl ; \ do \ - $(INSTALL_DATA) $$j $(SCRIPT_INSTALL_DIR)/tcltest2.1; \ + $(INSTALL_DATA) $$j $(SCRIPT_INSTALL_DIR)/tcltest2.2; \ done; @echo "Installing library encoding directory"; @for i in $(TOP_DIR)/library/encoding/*.enc ; do \ diff --git a/unix/configure b/unix/configure index e08d65c..c3fca8c 100755 --- a/unix/configure +++ b/unix/configure @@ -546,7 +546,7 @@ fi TCL_VERSION=8.4 TCL_MAJOR_VERSION=8 TCL_MINOR_VERSION=4 -TCL_PATCH_LEVEL="b2" +TCL_PATCH_LEVEL="b3" VERSION=${TCL_VERSION} #------------------------------------------------------------------------ diff --git a/unix/configure.in b/unix/configure.in index fba96e1..f5f475b 100644 --- a/unix/configure.in +++ b/unix/configure.in @@ -3,7 +3,7 @@ dnl This file is an input file used by the GNU "autoconf" program to dnl generate the file "configure", which is run during Tcl installation dnl to configure the system for the local environment. # -# RCS: @(#) $Id: configure.in,v 1.96 2002/07/29 23:00:21 mdejong Exp $ +# RCS: @(#) $Id: configure.in,v 1.97 2002/08/20 15:33:34 dgp Exp $ AC_INIT(../generic/tcl.h) AC_PREREQ(2.13) @@ -11,7 +11,7 @@ AC_PREREQ(2.13) TCL_VERSION=8.4 TCL_MAJOR_VERSION=8 TCL_MINOR_VERSION=4 -TCL_PATCH_LEVEL="b2" +TCL_PATCH_LEVEL="b3" VERSION=${TCL_VERSION} #------------------------------------------------------------------------ diff --git a/unix/tcl.spec b/unix/tcl.spec index 8876020..7b17f7a 100644 --- a/unix/tcl.spec +++ b/unix/tcl.spec @@ -1,7 +1,7 @@ -# $Id: tcl.spec,v 1.12 2002/07/14 17:29:03 dgp Exp $ +# $Id: tcl.spec,v 1.13 2002/08/20 15:33:34 dgp Exp $ # This file is the basis for a binary Tcl RPM for Linux. -%define version 8.4b2 +%define version 8.4b3 %define directory /usr/local Summary: Tcl scripting language development environment diff --git a/win/Makefile.in b/win/Makefile.in index 5aa9bac..0597d03 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.63 2002/07/16 23:13:07 mdejong Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.64 2002/08/20 15:33:34 dgp Exp $ VERSION = @TCL_VERSION@ @@ -486,7 +486,7 @@ install-libraries: libraries else true; \ fi; \ done; - @for i in http1.0 http2.4 opt0.4 encoding msgcat1.3 tcltest2.1; \ + @for i in http1.0 http2.4 opt0.4 encoding msgcat1.3 tcltest2.2; \ do \ if [ ! -d $(SCRIPT_INSTALL_DIR)/$$i ] ; then \ echo "Making directory $(SCRIPT_INSTALL_DIR)/$$i"; \ @@ -525,10 +525,10 @@ install-libraries: libraries do \ $(COPY) "$$j" "$(SCRIPT_INSTALL_DIR)/msgcat1.3"; \ done; - @echo "Installing library tcltest2.1 directory"; + @echo "Installing library tcltest2.2 directory"; @for j in $(ROOT_DIR)/library/tcltest/*.tcl; \ do \ - $(COPY) "$$j" "$(SCRIPT_INSTALL_DIR)/tcltest2.1"; \ + $(COPY) "$$j" "$(SCRIPT_INSTALL_DIR)/tcltest2.2"; \ done; @echo "Installing encodings"; @for i in $(ROOT_DIR)/library/encoding/*.enc ; do \ diff --git a/win/README.binary b/win/README.binary index 9a2b1e4..c116280 100644 --- a/win/README.binary +++ b/win/README.binary @@ -1,11 +1,11 @@ Tcl/Tk 8.4 for Windows, Binary Distribution -RCS: @(#) $Id: README.binary,v 1.30 2002/07/14 17:29:03 dgp Exp $ +RCS: @(#) $Id: README.binary,v 1.31 2002/08/20 15:33:34 dgp Exp $ 1. Introduction --------------- -This directory contains the binary distribution of Tcl/Tk 8.4b2 for +This directory contains the binary distribution of Tcl/Tk 8.4b3 for Windows. It was compiled with Microsoft Visual C++ 6.0 using Win32 API, so that it will run under Windows NT, 95, 98 and 2000. diff --git a/win/configure b/win/configure index a6767d0..83b3687 100755 --- a/win/configure +++ b/win/configure @@ -534,7 +534,7 @@ fi TCL_VERSION=8.4 TCL_MAJOR_VERSION=8 TCL_MINOR_VERSION=4 -TCL_PATCH_LEVEL="b2" +TCL_PATCH_LEVEL="b3" VER=$TCL_MAJOR_VERSION$TCL_MINOR_VERSION TCL_DDE_VERSION=1.2 diff --git a/win/configure.in b/win/configure.in index 975a8af..ecc64d0 100644 --- a/win/configure.in +++ b/win/configure.in @@ -3,7 +3,7 @@ # generate the file "configure", which is run during Tcl installation # to configure the system for the local environment. # -# RCS: @(#) $Id: configure.in,v 1.51 2002/07/19 20:29:47 mdejong Exp $ +# RCS: @(#) $Id: configure.in,v 1.52 2002/08/20 15:33:34 dgp Exp $ AC_INIT(../generic/tcl.h) AC_PREREQ(2.13) @@ -11,7 +11,7 @@ AC_PREREQ(2.13) TCL_VERSION=8.4 TCL_MAJOR_VERSION=8 TCL_MINOR_VERSION=4 -TCL_PATCH_LEVEL="b2" +TCL_PATCH_LEVEL="b3" VER=$TCL_MAJOR_VERSION$TCL_MINOR_VERSION TCL_DDE_VERSION=1.2 diff --git a/win/makefile.bc b/win/makefile.bc index 2a3a3a8..a381b30 100644 --- a/win/makefile.bc +++ b/win/makefile.bc @@ -412,10 +412,10 @@ install-libraries: -@$(MKDIR) "$(SCRIPT_INSTALL_DIR)\msgcat1.3" -@copy "$(ROOT)\library\msgcat\msgcat.tcl" "$(SCRIPT_INSTALL_DIR)\msgcat1.3" -@copy "$(ROOT)\library\msgcat\pkgIndex.tcl" "$(SCRIPT_INSTALL_DIR)\msgcat1.3" - @echo installing tcltest2.1 - -@$(MKDIR) "$(SCRIPT_INSTALL_DIR)\tcltest2.1" - -@copy "$(ROOT)\library\tcltest\tcltest.tcl" "$(SCRIPT_INSTALL_DIR)\tcltest2.1" - -@copy "$(ROOT)\library\tcltest\pkgIndex.tcl" "$(SCRIPT_INSTALL_DIR)\tcltest2.1" + @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 $(TCLDDEDLLNAME) -@$(MKDIR) "$(SCRIPT_INSTALL_DIR)\dde1.1" -@copy "$(TCLDDEDLL)" "$(SCRIPT_INSTALL_DIR)\dde1.1" diff --git a/win/makefile.vc b/win/makefile.vc index 08b45b7..488024b 100644 --- a/win/makefile.vc +++ b/win/makefile.vc @@ -12,7 +12,7 @@ # Copyright (c) 2001-2002 David Gravereaux. # #------------------------------------------------------------------------------ -# RCS: @(#) $Id: makefile.vc,v 1.91 2002/06/21 22:23:21 dgp Exp $ +# RCS: @(#) $Id: makefile.vc,v 1.92 2002/08/20 15:33:34 dgp Exp $ #------------------------------------------------------------------------------ !if "$(MSVCDIR)" == "" @@ -734,9 +734,9 @@ install-libraries: @echo installing msgcat1.3 @xcopy /i /y "$(ROOT)\library\msgcat\*.tcl" \ "$(SCRIPT_INSTALL_DIR)\msgcat1.3\" - @echo installing tcltest2.1 + @echo installing tcltest2.2 @xcopy /i /y "$(ROOT)\library\tcltest\*.tcl" \ - "$(SCRIPT_INSTALL_DIR)\tcltest2.1\" + "$(SCRIPT_INSTALL_DIR)\tcltest2.2\" @echo installing $(TCLDDELIBNAME) !if $(STATIC_BUILD) @xcopy /i /y "$(TCLDDELIB)" "$(LIB_INSTALL_DIR)\" -- cgit v0.12