From 106238381fb5a416aca2817b156ec8f20ec6ba7d Mon Sep 17 00:00:00 2001 From: hobbs Date: Wed, 6 Sep 2000 18:50:15 +0000 Subject: * README: * generic/tcl.h: * library/tcltest1.0/tcltest.tcl: * tools/tcl.wse.in: * tools/tcltk-man2html.tcl: * unix/configure.in: * unix/tcl.spec: * win/README.binary: * win/configure.in: updated patchlevel to 8.4a2 --- README | 6 +++--- generic/tcl.h | 6 +++--- library/tcltest/tcltest.tcl | 4 ++-- library/tcltest1.0/tcltest.tcl | 4 ++-- tools/tcl.wse.in | 2 +- tools/tcltk-man2html.tcl | 4 ++-- unix/configure.in | 4 ++-- unix/tcl.spec | 4 ++-- win/README.binary | 6 +++--- win/configure.in | 4 ++-- 10 files changed, 22 insertions(+), 22 deletions(-) diff --git a/README b/README index e9de769..0186814 100644 --- a/README +++ b/README @@ -1,11 +1,11 @@ README: Tcl - This is the Tcl 8.4a1 source distribution. + This is the Tcl 8.4a2 source distribution. You can get any release of Tcl from: http://dev.scriptics.com/registration/.tml Tcl/Tk is also available through NetCVS: http://dev.scriptics.com/software/tcltk/netcvs.html -RCS: @(#) $Id: README,v 1.33 2000/08/14 18:37:59 ericm Exp $ +RCS: @(#) $Id: README,v 1.34 2000/09/06 18:50:15 hobbs Exp $ Contents -------- @@ -49,7 +49,7 @@ The home page for this release, including new features, is http://dev.scriptics.com/software/tcltk/8.4.html Detailed release notes can be found at - http://dev.scriptics.com/software/tcltk/relnotes/tcl8.4a1.txt + http://dev.scriptics.com/software/tcltk/relnotes/tcl8.4a2.txt Information about Tcl itself can be found at http://dev.scriptics.com/scripting/ diff --git a/generic/tcl.h b/generic/tcl.h index b0b74a4..22f4f88 100644 --- a/generic/tcl.h +++ b/generic/tcl.h @@ -12,7 +12,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.77 2000/08/25 02:04:27 ericm Exp $ + * RCS: @(#) $Id: tcl.h,v 1.78 2000/09/06 18:50:15 hobbs Exp $ */ #ifndef _TCL @@ -59,10 +59,10 @@ extern "C" { #define TCL_MAJOR_VERSION 8 #define TCL_MINOR_VERSION 4 #define TCL_RELEASE_LEVEL TCL_ALPHA_RELEASE -#define TCL_RELEASE_SERIAL 1 +#define TCL_RELEASE_SERIAL 2 #define TCL_VERSION "8.4" -#define TCL_PATCH_LEVEL "8.4a1" +#define TCL_PATCH_LEVEL "8.4a2" /* * The following definitions set up the proper options for Windows diff --git a/library/tcltest/tcltest.tcl b/library/tcltest/tcltest.tcl index b30ffeb..63639e3 100644 --- a/library/tcltest/tcltest.tcl +++ b/library/tcltest/tcltest.tcl @@ -12,7 +12,7 @@ # Copyright (c) 1998-1999 by Scriptics Corporation. # All rights reserved. # -# RCS: @(#) $Id: tcltest.tcl,v 1.26 2000/08/15 18:10:34 ericm Exp $ +# RCS: @(#) $Id: tcltest.tcl,v 1.27 2000/09/06 18:50:15 hobbs Exp $ package provide tcltest 1.0 @@ -270,7 +270,7 @@ namespace eval tcltest { variable version 8.4 } if {![info exists patchLevel]} { - variable patchLevel 8.4a1 + variable patchLevel 8.4a2 } } diff --git a/library/tcltest1.0/tcltest.tcl b/library/tcltest1.0/tcltest.tcl index b30ffeb..63639e3 100644 --- a/library/tcltest1.0/tcltest.tcl +++ b/library/tcltest1.0/tcltest.tcl @@ -12,7 +12,7 @@ # Copyright (c) 1998-1999 by Scriptics Corporation. # All rights reserved. # -# RCS: @(#) $Id: tcltest.tcl,v 1.26 2000/08/15 18:10:34 ericm Exp $ +# RCS: @(#) $Id: tcltest.tcl,v 1.27 2000/09/06 18:50:15 hobbs Exp $ package provide tcltest 1.0 @@ -270,7 +270,7 @@ namespace eval tcltest { variable version 8.4 } if {![info exists patchLevel]} { - variable patchLevel 8.4a1 + variable patchLevel 8.4a2 } } diff --git a/tools/tcl.wse.in b/tools/tcl.wse.in index 4b263a9..57e4fd9 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.4a1 + Disk Label=tcl8.4a2 Disk Filename=setup Patch Flags=0000000000000001 Patch Threshold=85 diff --git a/tools/tcltk-man2html.tcl b/tools/tcltk-man2html.tcl index d90e534..1ad2f4c 100755 --- a/tools/tcltk-man2html.tcl +++ b/tools/tcltk-man2html.tcl @@ -81,8 +81,8 @@ proc parse_command_line {} { set webdir ../html # Directory names for Tcl and Tk, in priority order. - set tclDirList {tcl8.4a1 tcl8.3 tcl8.2 tcl8.1 tcl8.0 tcl} - set tkDirList {tk8.4a1 tk8.3 tk8.2 tk8.1 tk8.0 tk} + set tclDirList {tcl8.4 tcl8.3 tcl8.2 tcl8.1 tcl8.0 tcl} + set tkDirList {tk8.4 tk8.3 tk8.2 tk8.1 tk8.0 tk} # Handle arguments a la GNU: # --version diff --git a/unix/configure.in b/unix/configure.in index 055687e..90b2e38 100644 --- a/unix/configure.in +++ b/unix/configure.in @@ -3,12 +3,12 @@ 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. AC_INIT(../generic/tcl.h) -# RCS: @(#) $Id: configure.in,v 1.60 2000/08/25 05:45:08 mo Exp $ +# RCS: @(#) $Id: configure.in,v 1.61 2000/09/06 18:50:16 hobbs Exp $ TCL_VERSION=8.4 TCL_MAJOR_VERSION=8 TCL_MINOR_VERSION=4 -TCL_PATCH_LEVEL="a1" +TCL_PATCH_LEVEL="a2" VERSION=${TCL_VERSION} #------------------------------------------------------------------------ diff --git a/unix/tcl.spec b/unix/tcl.spec index 21905e4..311dbdc 100644 --- a/unix/tcl.spec +++ b/unix/tcl.spec @@ -1,7 +1,7 @@ -# $Id: tcl.spec,v 1.5 2000/05/03 00:15:10 hobbs Exp $ +# $Id: tcl.spec,v 1.6 2000/09/06 18:50:17 hobbs Exp $ # This file is the basis for a binary Tcl RPM for Linux. -%define version 8.4a1 +%define version 8.4a2 %define directory /usr/local Summary: Tcl scripting language development environment diff --git a/win/README.binary b/win/README.binary index e5fb1a6..870161d 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.20 2000/05/03 00:15:10 hobbs Exp $ +RCS: @(#) $Id: README.binary,v 1.21 2000/09/06 18:50:17 hobbs Exp $ 1. Introduction --------------- -This directory contains the binary distribution of Tcl/Tk 8.4a1 for +This directory contains the binary distribution of Tcl/Tk 8.4a2 for Windows. It was compiled with Microsoft Visual C++ 5.0 using Win32 API, so that it will run under Windows NT, 95, 98 and 2000. @@ -29,7 +29,7 @@ The home page for the Tcl/Tk 8.4 release is http://dev.scriptics.com/software/tcltk/8.4.html Detailed release notes can be found at - http://dev.scriptics.com/software/tcltk/relnotes/tcl8.4a1.txt + http://dev.scriptics.com/software/tcltk/relnotes/tcl8.4a2.txt Information about Tcl itself can be found at http://dev.scriptics.com/scripting/ diff --git a/win/configure.in b/win/configure.in index 908163e..5173dfe 100644 --- a/win/configure.in +++ b/win/configure.in @@ -2,14 +2,14 @@ # generate the file "configure", which is run during Tcl installation # to configure the system for the local environment. # -# RCS: @(#) $Id: configure.in,v 1.27 2000/08/25 05:45:09 mo Exp $ +# RCS: @(#) $Id: configure.in,v 1.28 2000/09/06 18:50:17 hobbs Exp $ AC_INIT(../generic/tcl.h) TCL_VERSION=8.4 TCL_MAJOR_VERSION=8 TCL_MINOR_VERSION=4 -TCL_PATCH_LEVEL="a1" +TCL_PATCH_LEVEL="a2" VER=$TCL_MAJOR_VERSION$TCL_MINOR_VERSION if test "${prefix}" = "NONE"; then -- cgit v0.12