diff options
author | dgp <dgp@users.sourceforge.net> | 2002-08-20 15:33:31 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2002-08-20 15:33:31 (GMT) |
commit | d768d45269fd4e4b6012d73d8c27390cd81c84df (patch) | |
tree | 8cc82493e4b49455533f5c68616f91ce879a8a31 /unix | |
parent | 7103d942718e5537c2c81195f0c0949ef529e08f (diff) | |
download | tcl-d768d45269fd4e4b6012d73d8c27390cd81c84df.zip tcl-d768d45269fd4e4b6012d73d8c27390cd81c84df.tar.gz tcl-d768d45269fd4e4b6012d73d8c27390cd81c84df.tar.bz2 |
* 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:
Diffstat (limited to 'unix')
-rw-r--r-- | unix/Makefile.in | 8 | ||||
-rwxr-xr-x | unix/configure | 2 | ||||
-rw-r--r-- | unix/configure.in | 4 | ||||
-rw-r--r-- | unix/tcl.spec | 4 |
4 files changed, 9 insertions, 9 deletions
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 |