summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog10
-rw-r--r--README4
-rw-r--r--generic/tcl.h9
-rw-r--r--tools/tcl.wse.in10
-rwxr-xr-xunix/configure2
-rw-r--r--unix/configure.in4
-rw-r--r--unix/tcl.spec4
-rw-r--r--win/README.binary4
-rwxr-xr-xwin/configure2
-rw-r--r--win/configure.in4
10 files changed, 30 insertions, 23 deletions
diff --git a/ChangeLog b/ChangeLog
index dffd590..addc1d8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2002-07-14 Don Porter <dgp@users.sourceforge.net>
+
+ * README: Bumped HEAD to version 8.4b2 so we can
+ * generic/tcl.h: distinguish it from the 8.4b1 release.
+ * tools/tcl.wse.in:
+ * unix/configure*:
+ * unix/tcl.spec:
+ * win/README.binary:
+ * win/configure*:
+
2002-07-11 Vince Darley <vincentdarley@users.sourceforge.net>
* doc/file.n:
diff --git a/README b/README
index 3df52f9..903b8f8 100644
--- a/README
+++ b/README
@@ -1,11 +1,11 @@
README: Tcl
- This is the Tcl 8.4b1 source distribution.
+ This is the Tcl 8.4b2 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.42 2002/06/21 23:55:34 dkf Exp $
+RCS: @(#) $Id: README,v 1.43 2002/07/14 17:29:01 dgp Exp $
Contents
--------
diff --git a/generic/tcl.h b/generic/tcl.h
index 893cddf..b2c8ee9 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.131 2002/07/08 10:08:57 vincentdarley Exp $
+ * RCS: @(#) $Id: tcl.h,v 1.132 2002/07/14 17:29:01 dgp Exp $
*/
#ifndef _TCL
@@ -44,13 +44,10 @@ extern "C" {
* win/configure.in (as above)
* win/tcl.m4 (not patchlevel)
* win/makefile.vc (not patchlevel) 2 LOC
- * library/reg/pkgIndex.tcl (not patchlevel, for tclregNN.dll)
- * library/dde/pkgIndex.tcl (not patchlevel, for tclddeNN.dll)
* README (sections 0 and 2)
* mac/README (2 LOC, not patchlevel)
* win/README.binary (sections 0-4)
* win/README (not patchlevel) (sections 0 and 2)
- * unix/README (not patchlevel) (part (h))
* unix/tcl.spec (2 LOC Major/Minor, 1 LOC patch)
* tests/basic.test (1 LOC M/M, not patchlevel)
* tools/tcl.hpj.in (not patchlevel, for windows installer)
@@ -60,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 1
+#define TCL_RELEASE_SERIAL 2
#define TCL_VERSION "8.4"
-#define TCL_PATCH_LEVEL "8.4b1"
+#define TCL_PATCH_LEVEL "8.4b2"
/*
* The following definitions set up the proper options for Windows
diff --git a/tools/tcl.wse.in b/tools/tcl.wse.in
index 68b551c..5fe60f2 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.4b1
+ Disk Label=tcl8.4b2
Disk Filename=setup
Patch Flags=0000000000000001
Patch Threshold=85
@@ -1587,8 +1587,8 @@ item: Install File
Flags=0000000000000010
end
item: Install File
- Source=${__TCLBASEDIR__}\win\release\tclreg84.dll
- Destination=%MAINDIR%\lib\tcl%VER%\reg1.0\tclreg84.dll
+ Source=${__TCLBASEDIR__}\win\release\tclreg10.dll
+ Destination=%MAINDIR%\lib\tcl%VER%\reg1.0\tclreg10.dll
Flags=0000000000000010
end
item: Install File
@@ -1597,8 +1597,8 @@ item: Install File
Flags=0000000000000010
end
item: Install File
- Source=${__TCLBASEDIR__}\win\release\tcldde84.dll
- Destination=%MAINDIR%\lib\tcl%VER%\dde1.2\tcldde84.dll
+ Source=${__TCLBASEDIR__}\win\release\tcldde12.dll
+ Destination=%MAINDIR%\lib\tcl%VER%\dde1.2\tcldde12.dll
Flags=0000000000000010
end
item: Install File
diff --git a/unix/configure b/unix/configure
index 27eb2f4..2f8ff97 100755
--- a/unix/configure
+++ b/unix/configure
@@ -545,7 +545,7 @@ fi
TCL_VERSION=8.4
TCL_MAJOR_VERSION=8
TCL_MINOR_VERSION=4
-TCL_PATCH_LEVEL="b1"
+TCL_PATCH_LEVEL="b2"
VERSION=${TCL_VERSION}
#------------------------------------------------------------------------
diff --git a/unix/configure.in b/unix/configure.in
index a5ec17f..2482805 100644
--- a/unix/configure.in
+++ b/unix/configure.in
@@ -3,14 +3,14 @@ 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.89 2002/06/25 15:20:44 rmax Exp $
+# RCS: @(#) $Id: configure.in,v 1.90 2002/07/14 17:29:03 dgp Exp $
AC_INIT(../generic/tcl.h)
TCL_VERSION=8.4
TCL_MAJOR_VERSION=8
TCL_MINOR_VERSION=4
-TCL_PATCH_LEVEL="b1"
+TCL_PATCH_LEVEL="b2"
VERSION=${TCL_VERSION}
#------------------------------------------------------------------------
diff --git a/unix/tcl.spec b/unix/tcl.spec
index e514ce3..8876020 100644
--- a/unix/tcl.spec
+++ b/unix/tcl.spec
@@ -1,7 +1,7 @@
-# $Id: tcl.spec,v 1.11 2002/06/21 23:55:35 dkf Exp $
+# $Id: tcl.spec,v 1.12 2002/07/14 17:29:03 dgp Exp $
# This file is the basis for a binary Tcl RPM for Linux.
-%define version 8.4b1
+%define version 8.4b2
%define directory /usr/local
Summary: Tcl scripting language development environment
diff --git a/win/README.binary b/win/README.binary
index 0b14a0a..9a2b1e4 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.29 2002/06/21 23:55:35 dkf Exp $
+RCS: @(#) $Id: README.binary,v 1.30 2002/07/14 17:29:03 dgp Exp $
1. Introduction
---------------
-This directory contains the binary distribution of Tcl/Tk 8.4b1 for
+This directory contains the binary distribution of Tcl/Tk 8.4b2 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 b637977..78b9348 100755
--- a/win/configure
+++ b/win/configure
@@ -533,7 +533,7 @@ fi
TCL_VERSION=8.4
TCL_MAJOR_VERSION=8
TCL_MINOR_VERSION=4
-TCL_PATCH_LEVEL="b1"
+TCL_PATCH_LEVEL="b2"
VER=$TCL_MAJOR_VERSION$TCL_MINOR_VERSION
TCL_DDE_VERSION=1.2
diff --git a/win/configure.in b/win/configure.in
index dee3e04..13cab98 100644
--- a/win/configure.in
+++ b/win/configure.in
@@ -3,14 +3,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.49 2002/06/21 23:55:35 dkf Exp $
+# RCS: @(#) $Id: configure.in,v 1.50 2002/07/14 17:29:03 dgp Exp $
AC_INIT(../generic/tcl.h)
TCL_VERSION=8.4
TCL_MAJOR_VERSION=8
TCL_MINOR_VERSION=4
-TCL_PATCH_LEVEL="b1"
+TCL_PATCH_LEVEL="b2"
VER=$TCL_MAJOR_VERSION$TCL_MINOR_VERSION
TCL_DDE_VERSION=1.2