summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog29
-rw-r--r--README4
-rw-r--r--generic/tcl.h8
-rw-r--r--tools/tcl.wse.in2
-rwxr-xr-xunix/configure2
-rw-r--r--unix/configure.in6
-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, 47 insertions, 18 deletions
diff --git a/ChangeLog b/ChangeLog
index dde2128..4b1e0e9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,32 @@
+2002-09-02 Jeff Hobbs <jeffh@ActiveState.com>
+
+ * README: Bumped version number to 8.4.0
+ * generic/tcl.h:
+ * tools/tcl.wse.in:
+ * unix/configure:
+ * unix/configure.in:
+ * unix/tcl.spec:
+ * win/README.binary:
+ * win/configure:
+ * win/configure.in:
+
+ * generic/tclInterp.c (SlaveCreate): make sure that the memory and
+ checkmem commands are initialized in non-safe slave interpreters
+ when TCL_MEM_DEBUG is used. [Bug #583445]
+
+ * win/tclWinConsole.c (ConsoleCloseProc): only wait on writable
+ pipe if there was something to write. This may prevent infinite
+ wait on exit.
+
+ * tests/exec.test: marked exec-18.1 unixOnly until the Windows
+ incompatability (in the test, not the core) can be resolved.
+
+ * tests/http.test (http-3.11): added close $fp that was causing an
+ error on Windows because the file was not closed before deleting.
+
+ * unix/tclUnixInit.c (Tcl_MacOSXGetLibraryPath): made this static
+ function only appear when HAVE_CFBUNDLE is defined.
+
2002-08-31 Daniel Steffen <das@users.sourceforge.net>
* unix/tcl.m4: added TK_SHLIB_LD_EXTRAS analogue of existing
diff --git a/README b/README
index 912cf3a..2bf32b3 100644
--- a/README
+++ b/README
@@ -1,11 +1,11 @@
README: Tcl
- This is the Tcl 8.4b3 source distribution.
+ This is the Tcl 8.4.0 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.44 2002/08/20 15:33:32 dgp Exp $
+RCS: @(#) $Id: README,v 1.45 2002/09/02 20:10:58 hobbs Exp $
Contents
--------
diff --git a/generic/tcl.h b/generic/tcl.h
index bb62de4..249aa8b 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.141 2002/08/31 06:09:45 das Exp $
+ * RCS: @(#) $Id: tcl.h,v 1.142 2002/09/02 20:10:59 hobbs Exp $
*/
#ifndef _TCL
@@ -56,11 +56,11 @@ extern "C" {
*/
#define TCL_MAJOR_VERSION 8
#define TCL_MINOR_VERSION 4
-#define TCL_RELEASE_LEVEL TCL_BETA_RELEASE
-#define TCL_RELEASE_SERIAL 3
+#define TCL_RELEASE_LEVEL TCL_FINAL_RELEASE
+#define TCL_RELEASE_SERIAL 0
#define TCL_VERSION "8.4"
-#define TCL_PATCH_LEVEL "8.4b3"
+#define TCL_PATCH_LEVEL "8.4.0"
/*
* The following definitions set up the proper options for Windows
diff --git a/tools/tcl.wse.in b/tools/tcl.wse.in
index c2e9583..0e5ce60 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.4b3
+ Disk Label=tcl8.4.0
Disk Filename=setup
Patch Flags=0000000000000001
Patch Threshold=85
diff --git a/unix/configure b/unix/configure
index 267395e..4be0587 100755
--- a/unix/configure
+++ b/unix/configure
@@ -550,7 +550,7 @@ fi
TCL_VERSION=8.4
TCL_MAJOR_VERSION=8
TCL_MINOR_VERSION=4
-TCL_PATCH_LEVEL="b3"
+TCL_PATCH_LEVEL=".0"
VERSION=${TCL_VERSION}
#------------------------------------------------------------------------
diff --git a/unix/configure.in b/unix/configure.in
index 1ef5729..1b75d0f 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.101 2002/08/31 06:09:46 das Exp $
+# RCS: @(#) $Id: configure.in,v 1.102 2002/09/02 20:11:05 hobbs 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="b3"
+TCL_PATCH_LEVEL=".0"
VERSION=${TCL_VERSION}
#------------------------------------------------------------------------
@@ -389,7 +389,7 @@ AC_CACHE_VAL(tcl_cv_putenv_copy,
strcpy((char *)(strchr(foo, '=') + 1), "no");
bar = getenv("havecopy");
if (!strcmp(bar, "no")) {
- /* doesn't copy */
+ /* doesnt copy */
return 0;
} else {
/* does copy */
diff --git a/unix/tcl.spec b/unix/tcl.spec
index 7b17f7a..03a2b6d 100644
--- a/unix/tcl.spec
+++ b/unix/tcl.spec
@@ -1,7 +1,7 @@
-# $Id: tcl.spec,v 1.13 2002/08/20 15:33:34 dgp Exp $
+# $Id: tcl.spec,v 1.14 2002/09/02 20:11:05 hobbs Exp $
# This file is the basis for a binary Tcl RPM for Linux.
-%define version 8.4b3
+%define version 8.4.0
%define directory /usr/local
Summary: Tcl scripting language development environment
diff --git a/win/README.binary b/win/README.binary
index c116280..81a1322 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.31 2002/08/20 15:33:34 dgp Exp $
+RCS: @(#) $Id: README.binary,v 1.32 2002/09/02 20:11:06 hobbs Exp $
1. Introduction
---------------
-This directory contains the binary distribution of Tcl/Tk 8.4b3 for
+This directory contains the binary distribution of Tcl/Tk 8.4.0 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 1f60604..e1d7735 100755
--- a/win/configure
+++ b/win/configure
@@ -536,7 +536,7 @@ fi
TCL_VERSION=8.4
TCL_MAJOR_VERSION=8
TCL_MINOR_VERSION=4
-TCL_PATCH_LEVEL="b3"
+TCL_PATCH_LEVEL=".0"
VER=$TCL_MAJOR_VERSION$TCL_MINOR_VERSION
TCL_DDE_VERSION=1.2
diff --git a/win/configure.in b/win/configure.in
index 143143a..0d6afab 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.53 2002/08/22 00:52:34 andreas_kupries Exp $
+# RCS: @(#) $Id: configure.in,v 1.54 2002/09/02 20:11:06 hobbs 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="b3"
+TCL_PATCH_LEVEL=".0"
VER=$TCL_MAJOR_VERSION$TCL_MINOR_VERSION
TCL_DDE_VERSION=1.2