diff options
author | dgp <dgp@users.sourceforge.net> | 2003-03-04 23:45:40 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2003-03-04 23:45:40 (GMT) |
commit | f5aa1d944a39ee1d14f9c64d98eba3da173678a9 (patch) | |
tree | b7af161b6d43e4f57e1a16ca62ffb67e760f162e /win | |
parent | 55bb78dc4fdf14318cfcbbeb264b7ef0a3e0a57e (diff) | |
download | tcl-f5aa1d944a39ee1d14f9c64d98eba3da173678a9.zip tcl-f5aa1d944a39ee1d14f9c64d98eba3da173678a9.tar.gz tcl-f5aa1d944a39ee1d14f9c64d98eba3da173678a9.tar.bz2 |
* 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:
Diffstat (limited to 'win')
-rw-r--r-- | win/README | 8 | ||||
-rw-r--r-- | win/README.binary | 10 | ||||
-rwxr-xr-x | win/configure | 6 | ||||
-rw-r--r-- | win/configure.in | 8 | ||||
-rw-r--r-- | win/makefile.bc | 4 | ||||
-rw-r--r-- | win/makefile.vc | 4 | ||||
-rw-r--r-- | win/tcl.m4 | 20 |
7 files changed, 30 insertions, 30 deletions
@@ -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 @@ -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) |