summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog24
-rw-r--r--README6
-rw-r--r--generic/tcl.h13
-rw-r--r--library/init.tcl4
-rw-r--r--mac/README6
-rw-r--r--macosx/Tcl.pbproj/project.pbxproj18
-rw-r--r--tests/basic.test4
-rwxr-xr-xtools/configure4
-rw-r--r--tools/configure.in4
-rw-r--r--tools/tcl.hpj.in4
-rw-r--r--tools/tcl.wse.in68
-rwxr-xr-xunix/configure6
-rw-r--r--unix/configure.in8
-rw-r--r--unix/tcl.spec4
-rw-r--r--win/README8
-rw-r--r--win/README.binary10
-rwxr-xr-xwin/configure6
-rw-r--r--win/configure.in8
-rw-r--r--win/makefile.bc4
-rw-r--r--win/makefile.vc4
-rw-r--r--win/tcl.m420
21 files changed, 129 insertions, 104 deletions
diff --git a/ChangeLog b/ChangeLog
index ea92d8f..f766ffa 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,27 @@
+2003-03-04 Don Porter <dgp@users.sourceforge.net>
+
+ * README: Bumped version number of
+ * generic/tcl.h: Tcl to 8.5a0.
+ * library.init.tcl:
+ * mac/README:
+ * macosx/Tcl.pbproj/project.pbxproc:
+ * tests/basic.test:
+ * tools/configure.in:
+ * tools/tcl.hpj.in:
+ * tools/tcl.wse.in:
+ * unix/configure.in:
+ * unix/tcl.spec:
+ * win/README:
+ * win/README.binary:
+ * win/configure.in:
+ * win/makefile.bc:
+ * win/makefile.vc:
+ * win/tcl.m4:
+
+ * tools/configure: autoconf
+ * unix/configure:
+ * win/configure:
+
2003-03-03 Jeff Hobbs <jeffh@ActiveState.com>
*** 8.4.2 TAGGED FOR RELEASE ***
diff --git a/README b/README
index 00262bb..7ae5a96 100644
--- a/README
+++ b/README
@@ -1,11 +1,11 @@
README: Tcl
- This is the Tcl 8.4.2 source distribution.
+ This is the Tcl 8.5a0 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.49 2003/02/15 02:16:28 hobbs Exp $
+RCS: @(#) $Id: README,v 1.50 2003/03/04 23:45:57 dgp Exp $
Contents
--------
@@ -48,7 +48,7 @@ and selling it either in whole or in part. See the file
Extensive documentation is available at our website.
The home page for this release, including new features, is
- http://www.tcl.tk/software/tcltk/8.4.html
+ http://www.tcl.tk/software/tcltk/8.5.html
Detailed release notes can be found at the file distributions page
by clicking on the relevant version.
diff --git a/generic/tcl.h b/generic/tcl.h
index c85a656..7c8dd6b 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.153 2003/02/15 02:16:29 hobbs Exp $
+ * RCS: @(#) $Id: tcl.h,v 1.154 2003/03/04 23:45:58 dgp Exp $
*/
#ifndef _TCL
@@ -44,6 +44,7 @@ extern "C" {
* win/configure.in (as above)
* win/tcl.m4 (not patchlevel)
* win/makefile.vc (not patchlevel) 2 LOC
+ * win/makefile.bc (not patchlevel) 2 LOC
* README (sections 0 and 2)
* mac/README (2 LOC, not patchlevel)
* macosx/Tcl.pbproj/project.pbxproj
@@ -57,15 +58,15 @@ extern "C" {
* tools/tclSplash.bmp (not patchlevel)
*/
#define TCL_MAJOR_VERSION 8
-#define TCL_MINOR_VERSION 4
-#define TCL_RELEASE_LEVEL TCL_FINAL_RELEASE
-#define TCL_RELEASE_SERIAL 2
+#define TCL_MINOR_VERSION 5
+#define TCL_RELEASE_LEVEL TCL_ALPHA_RELEASE
+#define TCL_RELEASE_SERIAL 0
#define TCL_PREFIX_IDENT ""
#define TCL_DEBUG_IDENT TCL_DBGX
-#define TCL_VERSION "8.4"
-#define TCL_PATCH_LEVEL "8.4.2"
+#define TCL_VERSION "8.5"
+#define TCL_PATCH_LEVEL "8.5a0"
/*
* The following definitions set up the proper options for Windows
diff --git a/library/init.tcl b/library/init.tcl
index e5a5d0f..789d295 100644
--- a/library/init.tcl
+++ b/library/init.tcl
@@ -3,7 +3,7 @@
# Default system startup file for Tcl-based applications. Defines
# "unknown" procedure and auto-load facilities.
#
-# RCS: @(#) $Id: init.tcl,v 1.55 2002/11/23 01:41:35 hobbs Exp $
+# RCS: @(#) $Id: init.tcl,v 1.56 2003/03/04 23:46:00 dgp Exp $
#
# Copyright (c) 1991-1993 The Regents of the University of California.
# Copyright (c) 1994-1996 Sun Microsystems, Inc.
@@ -16,7 +16,7 @@
if {[info commands package] == ""} {
error "version mismatch: library\nscripts expect Tcl version 7.5b1 or later but the loaded version is\nonly [info patchlevel]"
}
-package require -exact Tcl 8.4
+package require -exact Tcl 8.5
# Compute the auto path to use in this interpreter.
# The values on the path come from several locations:
diff --git a/mac/README b/mac/README
index 6fa986c..99dc71d 100644
--- a/mac/README
+++ b/mac/README
@@ -1,6 +1,6 @@
-Tcl 8.4 for Macintosh
+Tcl 8.5 for Macintosh
-RCS: @(#) $Id: README,v 1.17 2002/03/04 23:26:03 hobbs Exp $
+RCS: @(#) $Id: README,v 1.18 2003/03/04 23:46:08 dgp Exp $
1. Introduction
---------------
@@ -10,7 +10,7 @@ scripting language. The home page for the Mac/Tcl info is
http://www.tcl.tk/software/mac/
A summary of what's new in this release is at
- http://www.tcl.tk/software/tcltk/8.4.html
+ http://www.tcl.tk/software/tcltk/8.5.html
A summary of Macintosh-specific features is at
http://www.tcl.tk/software/mac/features.html
diff --git a/macosx/Tcl.pbproj/project.pbxproj b/macosx/Tcl.pbproj/project.pbxproj
index 40a9415..3c57697 100644
--- a/macosx/Tcl.pbproj/project.pbxproj
+++ b/macosx/Tcl.pbproj/project.pbxproj
@@ -98,7 +98,7 @@
);
buildSettings = {
EXTRA_CONFIGURE_FLAGS = "";
- FRAMEWORK_VERSION = 8.4;
+ FRAMEWORK_VERSION = 8.5;
INSTALL_PATH = /Library/Frameworks;
LIBDIR = "${INSTALL_PATH}/${PRODUCT_NAME}.framework/Versions/${FRAMEWORK_VERSION}";
PRODUCT_NAME = Tcl;
@@ -123,7 +123,7 @@
DYLIB_INSTALL_DIR = "${DYLIB_INSTALL_PATH}/${PRODUCT_NAME}.framework/Versions/${FRAMEWORK_VERSION}";
DYLIB_INSTALL_PATH = "${INSTALL_PATH}";
EXTRA_MAKE_FLAGS = "";
- FRAMEWORK_VERSION = 8.4;
+ FRAMEWORK_VERSION = 8.5;
INSTALL_PATH = /Library/Frameworks;
PRODUCT_NAME = Tcl;
};
@@ -161,7 +161,7 @@
buildSettings = {
DSTROOT = "${TEMP_DIR}";
EXTRA_MAKE_INSTALL_FLAGS = "";
- FRAMEWORK_VERSION = 8.4;
+ FRAMEWORK_VERSION = 8.5;
INSTALL_PATH = /Library/Frameworks;
LIBDIR = "${INSTALL_PATH}/${PRODUCT_NAME}.${WRAPPER_EXTENSION}/Versions/${FRAMEWORK_VERSION}";
PRODUCT_NAME = Tcl;
@@ -184,7 +184,7 @@
<key>CFBundleExecutable</key>
<string>Tcl</string>
<key>CFBundleGetInfoString</key>
- <string>Tcl Library 8.4, Copyright © 2002 Tcl Core Team.
+ <string>Tcl Library 8.5, Copyright © 2002 Tcl Core Team.
MacOS X Port by Jim Ingham &lt;jingham@apple.com&gt; &amp; Ian Reid, Copyright © 2001-2002, Apple Computer, Inc.</string>
<key>CFBundleIconFile</key>
<string></string>
@@ -193,15 +193,15 @@ MacOS X Port by Jim Ingham &lt;jingham@apple.com&gt; &amp; Ian Reid, Copyright Â
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
- <string>Tcl Library 8.4</string>
+ <string>Tcl Library 8.5</string>
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
- <string>8.4.2</string>
+ <string>8.5a0</string>
<key>CFBundleSignature</key>
<string>Tcl </string>
<key>CFBundleVersion</key>
- <string>8.4.2</string>
+ <string>8.5a0</string>
</dict>
</plist>
";
@@ -475,8 +475,8 @@ MacOS X Port by Jim Ingham &lt;jingham@apple.com&gt; &amp; Ian Reid, Copyright Â
};
F53ACC5C031D9D11016F146B = {
isa = PBXExecutableFileReference;
- name = tclsh8.4;
- path = ../../build/tclsh8.4;
+ name = tclsh8.5;
+ path = ../../build/tclsh8.5;
refType = 2;
};
F53ACC73031DA405016F146B = {
diff --git a/tests/basic.test b/tests/basic.test
index c45a763..c25ef2b 100644
--- a/tests/basic.test
+++ b/tests/basic.test
@@ -15,7 +15,7 @@
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
-# RCS: @(#) $Id: basic.test,v 1.25 2003/02/16 01:36:32 msofer Exp $
+# RCS: @(#) $Id: basic.test,v 1.26 2003/03/04 23:46:10 dgp Exp $
#
package require tcltest 2
@@ -28,7 +28,7 @@ testConstraint exec [llength [info commands exec]]
# This variable needs to be changed when the major or minor version number for
# Tcl changes.
-set tclvers 8.4
+set tclvers 8.5
catch {namespace delete test_ns_basic}
catch {interp delete test_interp}
diff --git a/tools/configure b/tools/configure
index f0fa9e9..d9b0d99 100755
--- a/tools/configure
+++ b/tools/configure
@@ -523,7 +523,7 @@ else
fi
-# RCS: @(#) $Id: configure,v 1.2 2001/10/04 20:18:09 hobbs Exp $
+# RCS: @(#) $Id: configure,v 1.3 2003/03/04 23:46:12 dgp Exp $
# Recover information that Tcl computed with its configure script.
@@ -532,7 +532,7 @@ fi
# not, assume that its top-level directory is a sibling of ours.
#--------------------------------------------------------------------
-DEF_VER=8.4
+DEF_VER=8.5
# Check whether --with-tcl or --without-tcl was given.
if test "${with_tcl+set}" = set; then
diff --git a/tools/configure.in b/tools/configure.in
index 5117b4d..6ed79b0 100644
--- a/tools/configure.in
+++ b/tools/configure.in
@@ -2,7 +2,7 @@ dnl This file is an input file used by the GNU "autoconf" program to
dnl generate the file "configure", which is run to configure the
dnl Makefile in this directory.
AC_INIT(man2tcl.c)
-# RCS: @(#) $Id: configure.in,v 1.9 2001/10/04 20:18:09 hobbs Exp $
+# RCS: @(#) $Id: configure.in,v 1.10 2003/03/04 23:46:13 dgp Exp $
# Recover information that Tcl computed with its configure script.
@@ -11,7 +11,7 @@ AC_INIT(man2tcl.c)
# not, assume that its top-level directory is a sibling of ours.
#--------------------------------------------------------------------
-DEF_VER=8.4
+DEF_VER=8.5
AC_ARG_WITH(tcl, [ --with-tcl=DIR use Tcl $DEF_VER binaries from DIR], TCL_BIN_DIR=$withval, TCL_BIN_DIR=`cd ../../tcl$DEF_VER$TCL_PATCH_LEVEL/unix; pwd`)
if test ! -d $TCL_BIN_DIR; then
diff --git a/tools/tcl.hpj.in b/tools/tcl.hpj.in
index 2a8c94a..0d01f35 100644
--- a/tools/tcl.hpj.in
+++ b/tools/tcl.hpj.in
@@ -5,9 +5,9 @@ HCW=0
LCID=0x409 0x0 0x0 ;English (United States)
REPORT=Yes
TITLE=Tcl/Tk Reference Manual
-CNT=tcl84.cnt
+CNT=tcl85.cnt
COPYRIGHT=Copyright © 2000 Ajuba Solutions
-HLP=tcl84.hlp
+HLP=tcl85.hlp
[FILES]
tcl.rtf
diff --git a/tools/tcl.wse.in b/tools/tcl.wse.in
index 14ded57..d21b4d6 100644
--- a/tools/tcl.wse.in
+++ b/tools/tcl.wse.in
@@ -1,7 +1,7 @@
Document Type: WSE
item: Global
Version=6.01
- Title=Tcl 8.4 for Windows Installation
+ Title=Tcl 8.5 for Windows Installation
Flags=00010100
Languages=65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Japanese Font Name=MS Gothic
@@ -12,7 +12,7 @@ item: Global
Log Pathname=%MAINDIR%\INSTALL.LOG
Message Font=MS Sans Serif
Font Size=8
- Disk Label=tcl8.4.2
+ Disk Label=tcl8.5a0
Disk Filename=setup
Patch Flags=0000000000000001
Patch Threshold=85
@@ -42,7 +42,7 @@ item: End Block
end
item: Set Variable
Variable=VER
- Value=8.4
+ Value=8.5
end
item: Set Variable
Variable=PATCHLEVEL
@@ -960,23 +960,23 @@ item: If/While Statement
Flags=00001010
end
item: Install File
- Source=${__TKBASEDIR__}\win\release\tk84.lib
- Destination=%MAINDIR%\lib\tk84.lib
+ Source=${__TKBASEDIR__}\win\release\tk85.lib
+ Destination=%MAINDIR%\lib\tk85.lib
Flags=0000000000000010
end
item: Install File
- Source=${__TKBASEDIR__}\win\release\tkstub84.lib
- Destination=%MAINDIR%\lib\tkstub84.lib
+ Source=${__TKBASEDIR__}\win\release\tkstub85.lib
+ Destination=%MAINDIR%\lib\tkstub85.lib
Flags=0000000000000010
end
item: Install File
- Source=${__TCLBASEDIR__}\win\release\tcl84.lib
- Destination=%MAINDIR%\lib\tcl84.lib
+ Source=${__TCLBASEDIR__}\win\release\tcl85.lib
+ Destination=%MAINDIR%\lib\tcl85.lib
Flags=0000000000000010
end
item: Install File
- Source=${__TCLBASEDIR__}\win\release\tclstub84.lib
- Destination=%MAINDIR%\lib\tclstub84.lib
+ Source=${__TCLBASEDIR__}\win\release\tclstub85.lib
+ Destination=%MAINDIR%\lib\tclstub85.lib
Flags=0000000000000010
end
item: Install File
@@ -1607,28 +1607,28 @@ item: Install File
Flags=0010001000000011
end
item: Install File
- Source=${__TKBASEDIR__}\win\release\wish84.exe
- Destination=%MAINDIR%\bin\wish84.exe
+ Source=${__TKBASEDIR__}\win\release\wish85.exe
+ Destination=%MAINDIR%\bin\wish85.exe
Flags=0000000000000010
end
item: Install File
- Source=${__TCLBASEDIR__}\win\release\tclsh84.exe
- Destination=%MAINDIR%\bin\tclsh84.exe
+ Source=${__TCLBASEDIR__}\win\release\tclsh85.exe
+ Destination=%MAINDIR%\bin\tclsh85.exe
Flags=0000000000000010
end
item: Install File
- Source=${__TCLBASEDIR__}\win\release\tclpip84.dll
- Destination=%MAINDIR%\bin\tclpip84.dll
+ Source=${__TCLBASEDIR__}\win\release\tclpip85.dll
+ Destination=%MAINDIR%\bin\tclpip85.dll
Flags=0000000000000010
end
item: Install File
- Source=${__TCLBASEDIR__}\win\release\tcl84.dll
- Destination=%MAINDIR%\bin\tcl84.dll
+ Source=${__TCLBASEDIR__}\win\release\tcl85.dll
+ Destination=%MAINDIR%\bin\tcl85.dll
Flags=0000000000000010
end
item: Install File
- Source=${__TKBASEDIR__}\win\release\tk84.dll
- Destination=%MAINDIR%\bin\tk84.dll
+ Source=${__TKBASEDIR__}\win\release\tk85.dll
+ Destination=%MAINDIR%\bin\tk85.dll
Flags=0000000000000010
end
item: Install File
@@ -2031,13 +2031,13 @@ item: If/While Statement
Flags=00001010
end
item: Install File
- Source=${__TCLBASEDIR__}\tools\tcl84.cnt
- Destination=%MAINDIR%\doc\tcl84.cnt
+ Source=${__TCLBASEDIR__}\tools\tcl85.cnt
+ Destination=%MAINDIR%\doc\tcl85.cnt
Flags=0000000000000010
end
item: Install File
- Source=${__TCLBASEDIR__}\tools\tcl84.hlp
- Destination=%MAINDIR%\doc\tcl84.hlp
+ Source=${__TCLBASEDIR__}\tools\tcl85.hlp
+ Destination=%MAINDIR%\doc\tcl85.hlp
Flags=0000000000000010
end
item: End Block
@@ -2070,7 +2070,7 @@ item: If/While Statement
Flags=00001010
end
item: Create Shortcut
- Source=%MAINDIR%\bin\wish84.exe
+ Source=%MAINDIR%\bin\wish85.exe
Destination=%GROUP%\Wish.lnk
Working Directory=%MAINDIR%
end
@@ -2082,7 +2082,7 @@ item: If/While Statement
Flags=00001010
end
item: Create Shortcut
- Source=%MAINDIR%\bin\tclsh84.exe
+ Source=%MAINDIR%\bin\tclsh85.exe
Destination=%GROUP%\Tclsh.lnk
Working Directory=%MAINDIR%
Key Type=1536
@@ -2096,7 +2096,7 @@ item: If/While Statement
Flags=00001010
end
item: Create Shortcut
- Source=%MAINDIR%\doc\tcl84.hlp
+ Source=%MAINDIR%\doc\tcl85.hlp
Destination=%GROUP%\Tcl Help.lnk
Working Directory=%MAINDIR%
end
@@ -2132,7 +2132,7 @@ item: Add ProgMan Icon
Group=%GROUP%
Icon Name=Widget Tour
Command Line=%MAINDIR%\lib\tk%VER%\demos\widget.tcl
- Icon Pathname=%MAINDIR%\bin\wish84.exe
+ Icon Pathname=%MAINDIR%\bin\wish85.exe
Default Directory=%MAINDIR%
end
item: End Block
@@ -2145,7 +2145,7 @@ end
item: Add ProgMan Icon
Group=%GROUP%
Icon Name=Tcl Help
- Command Line=%MAINDIR%\doc\tcl84.hlp
+ Command Line=%MAINDIR%\doc\tcl85.hlp
Default Directory=%MAINDIR%
end
item: End Block
@@ -2164,7 +2164,7 @@ end
item: Add ProgMan Icon
Group=%GROUP%
Icon Name=Wish
- Command Line=%MAINDIR%\bin\wish84.exe
+ Command Line=%MAINDIR%\bin\wish85.exe
Default Directory=%MAINDIR%
end
item: End Block
@@ -2177,7 +2177,7 @@ end
item: Add ProgMan Icon
Group=%GROUP%
Icon Name=Tclsh
- Command Line=%MAINDIR%\bin\tclsh84.exe
+ Command Line=%MAINDIR%\bin\tclsh85.exe
Default Directory=%MAINDIR%
end
item: End Block
@@ -2197,7 +2197,7 @@ end
item: Edit Registry
Total Keys=1
Key=TclScript\DefaultIcon
- New Value=%MAINDIR%\bin\tk84.dll
+ New Value=%MAINDIR%\bin\tk85.dll
end
item: Edit Registry
Total Keys=1
@@ -2212,7 +2212,7 @@ end
item: Edit Registry
Total Keys=1
Key=TclScript\shell\open\command
- New Value=%MAINDIRSHORT%\bin\wish84.exe "%%1" %%*
+ New Value=%MAINDIRSHORT%\bin\wish85.exe "%%1" %%*
end
item: Edit Registry
Total Keys=1
diff --git a/unix/configure b/unix/configure
index 70dcb69..b0e4fab 100755
--- a/unix/configure
+++ b/unix/configure
@@ -545,10 +545,10 @@ fi
-TCL_VERSION=8.4
+TCL_VERSION=8.5
TCL_MAJOR_VERSION=8
-TCL_MINOR_VERSION=4
-TCL_PATCH_LEVEL=".2"
+TCL_MINOR_VERSION=5
+TCL_PATCH_LEVEL="a0"
VERSION=${TCL_VERSION}
#------------------------------------------------------------------------
diff --git a/unix/configure.in b/unix/configure.in
index 7c405f6..77032a3 100644
--- a/unix/configure.in
+++ b/unix/configure.in
@@ -3,15 +3,15 @@ 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.106 2003/02/15 02:16:33 hobbs Exp $
+# RCS: @(#) $Id: configure.in,v 1.107 2003/03/04 23:46:19 dgp Exp $
AC_INIT(../generic/tcl.h)
AC_PREREQ(2.13)
-TCL_VERSION=8.4
+TCL_VERSION=8.5
TCL_MAJOR_VERSION=8
-TCL_MINOR_VERSION=4
-TCL_PATCH_LEVEL=".2"
+TCL_MINOR_VERSION=5
+TCL_PATCH_LEVEL="a0"
VERSION=${TCL_VERSION}
#------------------------------------------------------------------------
diff --git a/unix/tcl.spec b/unix/tcl.spec
index a04cc44..1e04249 100644
--- a/unix/tcl.spec
+++ b/unix/tcl.spec
@@ -1,7 +1,7 @@
-# $Id: tcl.spec,v 1.16 2003/02/15 02:16:33 hobbs Exp $
+# $Id: tcl.spec,v 1.17 2003/03/04 23:46:21 dgp Exp $
# This file is the basis for a binary Tcl RPM for Linux.
-%define version 8.4.2
+%define version 8.5a0
%define directory /usr/local
Summary: Tcl scripting language development environment
diff --git a/win/README b/win/README
index b6c955d..03b5282 100644
--- a/win/README
+++ b/win/README
@@ -1,6 +1,6 @@
-Tcl 8.4 for Windows
+Tcl 8.5 for Windows
-RCS: @(#) $Id: README,v 1.30 2003/01/27 03:34:04 mdejong Exp $
+RCS: @(#) $Id: README,v 1.31 2003/03/04 23:46:21 dgp Exp $
1. Introduction
---------------
@@ -20,7 +20,7 @@ when compiling Tcl extensions that will be dynamically loaded.
In order to compile Tcl for Windows, you need the following:
- Tcl 8.4 Source Distribution (plus any patches)
+ Tcl 8.5 Source Distribution (plus any patches)
and
@@ -82,7 +82,7 @@ find them. Tcl looks in one of following places for the library files:
1) The path specified in the environment variable "TCL_LIBRARY".
2) Relative to the directory containing the current .exe.
- Tcl will look for a directory "..\lib\tcl8.4" relative to the
+ Tcl will look for a directory "..\lib\tcl8.5" relative to the
directory containing the currently running .exe.
Note that in order to run tclsh84.exe, you must ensure that tcl84.dll
diff --git a/win/README.binary b/win/README.binary
index 9cc5783..db5021a 100644
--- a/win/README.binary
+++ b/win/README.binary
@@ -1,11 +1,11 @@
-Tcl/Tk 8.4 for Windows, Binary Distribution
+Tcl/Tk 8.5 for Windows, Binary Distribution
-RCS: @(#) $Id: README.binary,v 1.33 2003/02/15 02:16:33 hobbs Exp $
+RCS: @(#) $Id: README.binary,v 1.34 2003/03/04 23:46:22 dgp Exp $
1. Introduction
---------------
-This directory contains the binary distribution of Tcl/Tk 8.4.2 for
+This directory contains the binary distribution of Tcl/Tk 8.5a0 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.
@@ -27,8 +27,8 @@ The home of Tcl and Tk sources and bug database on the Web is at:
The home page for the Tcl Developer Xchange is at:
http://www.tcl.tk/
-The home page for the Tcl/Tk 8.4 release is
- http://www.tcl.tk/software/tcltk/8.4.html
+The home page for the Tcl/Tk 8.5 release is
+ http://www.tcl.tk/software/tcltk/8.5.html
Detailed release notes can be found at the file distributions page
by clicking on the relevant version.
diff --git a/win/configure b/win/configure
index 775dc4c..626566e 100755
--- a/win/configure
+++ b/win/configure
@@ -531,10 +531,10 @@ fi
-TCL_VERSION=8.4
+TCL_VERSION=8.5
TCL_MAJOR_VERSION=8
-TCL_MINOR_VERSION=4
-TCL_PATCH_LEVEL=".2"
+TCL_MINOR_VERSION=5
+TCL_PATCH_LEVEL="a0"
VER=$TCL_MAJOR_VERSION$TCL_MINOR_VERSION
TCL_DDE_VERSION=1.2
diff --git a/win/configure.in b/win/configure.in
index 00f0e7b..12e6ff0 100644
--- a/win/configure.in
+++ b/win/configure.in
@@ -3,15 +3,15 @@
# generate the file "configure", which is run during Tcl installation
# to configure the system for the local environment.
#
-# RCS: @(#) $Id: configure.in,v 1.68 2003/03/01 01:22:46 hobbs Exp $
+# RCS: @(#) $Id: configure.in,v 1.69 2003/03/04 23:46:25 dgp Exp $
AC_INIT(../generic/tcl.h)
AC_PREREQ(2.13)
-TCL_VERSION=8.4
+TCL_VERSION=8.5
TCL_MAJOR_VERSION=8
-TCL_MINOR_VERSION=4
-TCL_PATCH_LEVEL=".2"
+TCL_MINOR_VERSION=5
+TCL_PATCH_LEVEL="a0"
VER=$TCL_MAJOR_VERSION$TCL_MINOR_VERSION
TCL_DDE_VERSION=1.2
diff --git a/win/makefile.bc b/win/makefile.bc
index 918fe21..69713cc 100644
--- a/win/makefile.bc
+++ b/win/makefile.bc
@@ -107,8 +107,8 @@ NODEBUG = 1
NAMEPREFIX = tcl
STUBPREFIX = $(NAMEPREFIX)stub
-DOTVERSION = 8.4
-VERSION = 84
+DOTVERSION = 8.5
+VERSION = 85
DDEVERSION = 12
DDEDOTVERSION = 1.2
diff --git a/win/makefile.vc b/win/makefile.vc
index d37eba6..39f0354 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.100 2003/03/03 18:14:39 kennykb Exp $
+# RCS: @(#) $Id: makefile.vc,v 1.101 2003/03/04 23:46:26 dgp Exp $
#------------------------------------------------------------------------------
!if "$(MSVCDIR)" == ""
@@ -155,7 +155,7 @@ PROJECT = tcl
!include "rules.vc"
STUBPREFIX = $(PROJECT)stub
-DOTVERSION = 8.4
+DOTVERSION = 8.5
VERSION = $(DOTVERSION:.=)
DDEDOTVERSION = 1.2
diff --git a/win/tcl.m4 b/win/tcl.m4
index be20f7b..717a85c 100644
--- a/win/tcl.m4
+++ b/win/tcl.m4
@@ -20,15 +20,15 @@
AC_DEFUN(SC_PATH_TCLCONFIG, [
AC_MSG_CHECKING([the location of tclConfig.sh])
- if test -d ../../tcl8.4$1/win; then
- TCL_BIN_DIR_DEFAULT=../../tcl8.4$1/win
- elif test -d ../../tcl8.4/win; then
- TCL_BIN_DIR_DEFAULT=../../tcl8.4/win
+ if test -d ../../tcl8.5$1/win; then
+ TCL_BIN_DIR_DEFAULT=../../tcl8.5$1/win
+ elif test -d ../../tcl8.5/win; then
+ TCL_BIN_DIR_DEFAULT=../../tcl8.5/win
else
TCL_BIN_DIR_DEFAULT=../../tcl/win
fi
- AC_ARG_WITH(tcl, [ --with-tcl=DIR use Tcl 8.4 binaries from DIR],
+ AC_ARG_WITH(tcl, [ --with-tcl=DIR use Tcl 8.5 binaries from DIR],
TCL_BIN_DIR=$withval, TCL_BIN_DIR=`cd $TCL_BIN_DIR_DEFAULT; pwd`)
if test ! -d $TCL_BIN_DIR; then
AC_MSG_ERROR(Tcl directory $TCL_BIN_DIR does not exist)
@@ -60,15 +60,15 @@ AC_DEFUN(SC_PATH_TCLCONFIG, [
AC_DEFUN(SC_PATH_TKCONFIG, [
AC_MSG_CHECKING([the location of tkConfig.sh])
- if test -d ../../tk8.4$1/win; then
- TK_BIN_DIR_DEFAULT=../../tk8.4$1/win
- elif test -d ../../tk8.4/win; then
- TK_BIN_DIR_DEFAULT=../../tk8.4/win
+ if test -d ../../tk8.5$1/win; then
+ TK_BIN_DIR_DEFAULT=../../tk8.5$1/win
+ elif test -d ../../tk8.5/win; then
+ TK_BIN_DIR_DEFAULT=../../tk8.5/win
else
TK_BIN_DIR_DEFAULT=../../tk/win
fi
- AC_ARG_WITH(tk, [ --with-tk=DIR use Tk 8.4 binaries from DIR],
+ AC_ARG_WITH(tk, [ --with-tk=DIR use Tk 8.5 binaries from DIR],
TK_BIN_DIR=$withval, TK_BIN_DIR=`cd $TK_BIN_DIR_DEFAULT; pwd`)
if test ! -d $TK_BIN_DIR; then
AC_MSG_ERROR(Tk directory $TK_BIN_DIR does not exist)