diff options
Diffstat (limited to 'win')
-rw-r--r-- | win/README | 6 | ||||
-rw-r--r-- | win/README.binary | 10 | ||||
-rw-r--r-- | win/makefile.vc | 6 |
3 files changed, 12 insertions, 10 deletions
@@ -1,10 +1,10 @@ -Tcl 8.0.3 for Windows +Tcl 8.0.4 for Windows by Scott Stanton Scriptics Corporation scott.stanton@scriptics.com -RCS: @(#) $Id: README,v 1.6 1998/09/14 18:40:18 stanton Exp $ +RCS: @(#) $Id: README,v 1.7 1998/10/17 00:20:50 escoffon Exp $ 1. Introduction --------------- @@ -41,7 +41,7 @@ In order to compile Tcl for Windows, you need the following items: Visual C++ 2.x/4.x/5.x Visual C++ 1.5 (to build tcl1680.dll for Win32s support of exec) -In practice, the 8.0.3 release is built with Visual C++ 5.0 +In practice, the 8.0.4 release is built with Visual C++ 5.0 In the "win" subdirectory of the source release, you will find two files called "makefile.bc" and "makefile.vc". These are the makefiles diff --git a/win/README.binary b/win/README.binary index beb6ff2..759fb0c 100644 --- a/win/README.binary +++ b/win/README.binary @@ -1,11 +1,11 @@ -Tcl/Tk 8.0.3 for Windows, Binary Distribution
+Tcl/Tk 8.0.4 for Windows, Binary Distribution
-%Z% $Id: README.binary,v 1.1 1998/08/31 16:31:53 stanton Exp $
+%Z% $Id: README.binary,v 1.2 1998/10/17 00:20:50 escoffon Exp $
1. Introduction
---------------
-This directory contains the binary distribution of Tcl/Tk 8.0.3 for
+This directory contains the binary distribution of Tcl/Tk 8.0.4 for
Windows. It was compiled with Microsoft Visual C++ 5.0 using Win32
API, so that it will run under Windows NT and Windows 95. The
information here corresponds to release 8.0. This patch provides
@@ -22,11 +22,11 @@ release fixes various bugs in Tcl 8.0, plus it adds a few minor features to support the TclPro 1.0 tool set and [incr Tcl] 3.0.
Please check the changes file in the source release for details.
-This release also corresponds to Tk 8.0.3. This is a major release with
+This release also corresponds to Tk 8.0.4. This is a major release with
significant new features such as native look and feel on Macintoshes
and PCs, a new font mechanism, application embedding, and proper
support for Safe-Tcl. See below for details. There should be no
-backward incompatibilities in Tk 8.0.3 that affect scripts.
+backward incompatibilities in Tk 8.0.4 that affect scripts.
Note: with this release the Tk version number skips from 4.2 to 8.0.
The jump was made in order to synchronize the Tcl and Tk version
diff --git a/win/makefile.vc b/win/makefile.vc index 0408234..dd25642 100644 --- a/win/makefile.vc +++ b/win/makefile.vc @@ -4,7 +4,7 @@ # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # # Copyright (c) 1995-1996 Sun Microsystems, Inc. -# RCS: @(#) $Id: makefile.vc,v 1.18 1998/10/07 20:57:09 escoffon Exp $ +# RCS: @(#) $Id: makefile.vc,v 1.19 1998/10/17 00:20:50 escoffon Exp $ # Does not depend on the presence of any environment variables in # order to compile tcl; all needed information is derived from @@ -240,7 +240,9 @@ conlibsdll = $(libcdll) $(baselibs) # MSVC on Alpha doesn't understand -Ot cdebug = -O2i -Gs -GD !ELSE -cdebug = -Oti -Gs -GD +#cdebug = -Oti -Gs -GD +# This cranks the optimization level to maximize speed +cdebug = -O2 -Gs -GD !ENDIF !ELSE cdebug = -Z7 -Od -WX |