summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authorhobbs <hobbs>2000-02-08 10:06:58 (GMT)
committerhobbs <hobbs>2000-02-08 10:06:58 (GMT)
commit67763d47ff042080e9e4784101f27258c6148379 (patch)
treee7916bc5a5a57d71490c3dbb4681113553cc8638 /win
parentc8f6788c1a50158b77972cd8d404c11ca0ce14e0 (diff)
downloadtcl-67763d47ff042080e9e4784101f27258c6148379.zip
tcl-67763d47ff042080e9e4784101f27258c6148379.tar.gz
tcl-67763d47ff042080e9e4784101f27258c6148379.tar.bz2
* unix/configure.in:
* win/configure.in: * win/README: * win/README.binary: * generic/tcl.h (TCL_RELEASE_SERIAL): Moved to 8.3.0 patchlevel * unix/tcl.m4: changed all -fpic to -fPIC
Diffstat (limited to 'win')
-rw-r--r--win/README4
-rw-r--r--win/README.binary6
-rw-r--r--win/configure.in4
3 files changed, 7 insertions, 7 deletions
diff --git a/win/README b/win/README
index de37b53..acab0ba 100644
--- a/win/README
+++ b/win/README
@@ -4,7 +4,7 @@ by Scott Stanton
Scriptics Corporation
scott.stanton@scriptics.com
-RCS: @(#) $Id: README,v 1.14 1999/10/05 22:47:04 hobbs Exp $
+RCS: @(#) $Id: README,v 1.15 2000/02/08 10:07:05 hobbs Exp $
1. Introduction
---------------
@@ -35,7 +35,7 @@ the tcl libraries and the tclsh executable.
In order to use the binaries generated by these makefiles, you will
need to place the Tcl script library files someplace where Tcl can
-find them. Tcl looks in one of three places for the library files:
+find them. Tcl looks in one of following places for the library files:
1) The path specified in the environment variable "TCL_LIBRARY".
diff --git a/win/README.binary b/win/README.binary
index 3e95573..5d98c4b 100644
--- a/win/README.binary
+++ b/win/README.binary
@@ -1,11 +1,11 @@
Tcl/Tk 8.3 for Windows, Binary Distribution
-RCS: @(#) $Id: README.binary,v 1.15 2000/01/21 02:26:32 hobbs Exp $
+RCS: @(#) $Id: README.binary,v 1.16 2000/02/08 10:07:05 hobbs Exp $
1. Introduction
---------------
-This directory contains the binary distribution of Tcl/Tk 8.3b2 for
+This directory contains the binary distribution of Tcl/Tk 8.3.0 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.
@@ -32,7 +32,7 @@ Information about new features in Tcl/Tk 8.3 can be found at
http://www.scriptics.com/software/whatsnew83.html
Detailed release notes can be found at
- http://www.scriptics.com/software/relnotes/tcl8.3b2
+ http://www.scriptics.com/software/relnotes/tcl8.3.0
Information about Tcl itself can be found at
http://www.scriptics.com/scripting/
diff --git a/win/configure.in b/win/configure.in
index 49bfdf6..a62aa30 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.17 2000/01/14 00:20:54 hobbs Exp $
+# RCS: @(#) $Id: configure.in,v 1.18 2000/02/08 10:07:05 hobbs Exp $
AC_INIT(../generic/tcl.h)
TCL_VERSION=8.3
TCL_MAJOR_VERSION=8
TCL_MINOR_VERSION=3
-TCL_PATCH_LEVEL="b2"
+TCL_PATCH_LEVEL=".0"
VER=$TCL_MAJOR_VERSION$TCL_MINOR_VERSION
#--------------------------------------------------------------------