From 77cc0fb2225fdb9c96369c3c6995cbcc78e08f45 Mon Sep 17 00:00:00 2001 From: welch Date: Fri, 25 Jun 1999 23:30:22 +0000 Subject: Changed to Tk 8.2b1 --- README | 9 ++++----- generic/tk.h | 8 ++++---- library/tk.tcl | 6 +++--- mac/README | 14 +++++++------- unix/README | 12 ++++++------ unix/configure.in | 9 ++++----- win/README | 4 ++-- win/makefile.vc | 8 ++++---- 8 files changed, 34 insertions(+), 36 deletions(-) diff --git a/README b/README index d19550a..0fea131 100644 --- a/README +++ b/README @@ -4,20 +4,19 @@ README: Tk service to the Tcl community by Scriptics Corporation. http://www.scriptics.com/ -RCS: @(#) $Id: README,v 1.16 1999/04/24 01:50:47 stanton Exp $ +RCS: @(#) $Id: README,v 1.17 1999/06/25 23:30:22 welch Exp $ 1. Introduction --------------- This directory contains the sources and documentation for Tk, an X11 toolkit implemented with the Tcl scripting language. The information -here corresponds to release 8.1.0, which is the final release for Tk -8.1. +here corresponds to release 8.2b1, which is the first beta for Tk 8.2. For details on features, incompatibilities, and potential problems with -this release, see the Tcl/Tk 8.1 Web page at +this release, see the Tcl/Tk 8.2 Web page at - http://www.scriptics.com/software/8.1.html + http://www.scriptics.com/software/8.2.html or refer to the "changes" file in this directory, which contains a historical record of all changes to Tk. diff --git a/generic/tk.h b/generic/tk.h index 45ef472..17210bd 100644 --- a/generic/tk.h +++ b/generic/tk.h @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tk.h,v 1.25 1999/05/22 01:59:21 stanton Exp $ + * RCS: @(#) $Id: tk.h,v 1.26 1999/06/25 23:30:25 welch Exp $ */ #ifndef _TK @@ -44,11 +44,11 @@ extern "C" { #define TK_MAJOR_VERSION 8 #define TK_MINOR_VERSION 1 -#define TK_RELEASE_LEVEL TCL_FINAL_RELEASE +#define TK_RELEASE_LEVEL TCL_BETA_RELEASE #define TK_RELEASE_SERIAL 1 -#define TK_VERSION "8.1" -#define TK_PATCH_LEVEL "8.1.1" +#define TK_VERSION "8.2" +#define TK_PATCH_LEVEL "8.2b1" /* * The following definitions set up the proper options for Macintosh diff --git a/library/tk.tcl b/library/tk.tcl index 0a4aaae..a97f041 100644 --- a/library/tk.tcl +++ b/library/tk.tcl @@ -3,7 +3,7 @@ # Initialization script normally executed in the interpreter for each # Tk-based application. Arranges class bindings for widgets. # -# RCS: @(#) $Id: tk.tcl,v 1.7 1999/04/16 01:51:27 stanton Exp $ +# RCS: @(#) $Id: tk.tcl,v 1.8 1999/06/25 23:30:25 welch Exp $ # # Copyright (c) 1992-1994 The Regents of the University of California. # Copyright (c) 1994-1996 Sun Microsystems, Inc. @@ -14,8 +14,8 @@ # Insist on running with compatible versions of Tcl and Tk. -package require -exact Tk 8.1 -package require -exact Tcl 8.1 +package require -exact Tk 8.2 +package require -exact Tcl 8.2 # Add Tk's directory to the end of the auto-load search path, if it # isn't already on the path: diff --git a/mac/README b/mac/README index aa70875..ecf3c88 100644 --- a/mac/README +++ b/mac/README @@ -1,4 +1,4 @@ -Tk 8.1 for Macintosh +Tk 8.2 for Macintosh by Ray Johnson Scriptics Corporation @@ -8,7 +8,7 @@ Jim Ingham Cygnus Solutions jingham@cygnus.com -RCS: @(#) $Id: README,v 1.9 1999/04/24 01:50:50 stanton Exp $ +RCS: @(#) $Id: README,v 1.10 1999/06/25 23:30:26 welch Exp $ 1. Introduction --------------- @@ -34,7 +34,7 @@ Macintosh Tk is distributed in three different forms. This should make it easier to only download what you need. The packages are as follows: -mactk8.1.sea.hqx +mactk8.2.sea.hqx This distribution is a "binary" only release. It contains an installer program that will install a 68k, PowerPC, or Fat @@ -42,13 +42,13 @@ mactk8.1.sea.hqx the Tcl & Tk libraries in the Extensions folder inside your System Folder. (No "INIT"'s or Control Pannels are installed.) -mactcltk-full-8.1.sea.hqx +mactcltk-full-8.2.sea.hqx This release contains the full release of Tcl and Tk for the Macintosh plus the More Files package on which Macintosh Tcl and Tk rely. -mactk-source-8.1.sea.hqx +mactk-source-8.2.sea.hqx This release contains the complete source to Tk for the Macintosh In addition, Metrowerks CodeWarrior libraries and project files @@ -62,9 +62,9 @@ In order to compile Macintosh Tk you must have the following items: CodeWarrior Pro 3 or higher - Mac Tcl 8.1 (source) + Mac Tcl 8.2 (source) (which requires More Files 1.4.2 or 1.4.3) - Mac Tk 8.1 (source) + Mac Tk 8.2 (source) The project files included with the Mac Tcl source should work fine. The only thing you may need to update are the access paths. diff --git a/unix/README b/unix/README index ccc5d37..62473ff 100644 --- a/unix/README +++ b/unix/README @@ -16,14 +16,14 @@ SGI, as well as PCs running Linux, BSDI, and SCO UNIX. To compile for a PC running Windows, see the README file in the directory ../win. To compile for a Macintosh, see the README file in the directory ../mac. -RCS: @(#) $Id: README,v 1.5 1999/04/24 01:50:51 stanton Exp $ +RCS: @(#) $Id: README,v 1.6 1999/06/25 23:30:26 welch Exp $ How To Compile And Install Tk: ------------------------------ -(a) Make sure that the Tcl 8.1 release is present in the directory - ../../tcl8.1 (or else use the "--with-tcl" switch described below). - This release of Tk will only work with Tcl 8.1. Also, be sure that +(a) Make sure that the Tcl 8.2 release is present in the directory + ../../tcl8.2 (or else use the "--with-tcl" switch described below). + This release of Tk will only work with Tcl 8.2. Also, be sure that you have configured Tcl before you configure Tk. (b) Check for patches as described in ../README. @@ -84,9 +84,9 @@ How To Compile And Install Tk: TCL_LIBRARY environment variable as well (see the Tcl README file for information on this). Note that installed versions of wish, libtk.a, libtk.so, and the Tk library have a version number in their - names, such as "wish8.1" or "libtk8.1.so"; to use the installed + names, such as "wish8.2" or "libtk8.2.so"; to use the installed versions, either specify the version number or create a symbolic - link (e.g. from "wish" to "wish8.1"). + link (e.g. from "wish" to "wish8.2"). If you have trouble compiling Tk, read through the file "porting.notes". It contains information that people have provided diff --git a/unix/configure.in b/unix/configure.in index 09ff608..fc33d14 100644 --- a/unix/configure.in +++ b/unix/configure.in @@ -3,13 +3,12 @@ dnl This file is an input file used by the GNU "autoconf" program to dnl generate the file "configure", which is run during Tk installation dnl to configure the system for the local environment. AC_INIT(../generic/tk.h) -# RCS: @(#) $Id: configure.in,v 1.36 1999/06/16 02:35:54 wart Exp $ +# RCS: @(#) $Id: configure.in,v 1.37 1999/06/25 23:30:26 welch Exp $ -TK_VERSION=8.1 +TK_VERSION=8.2 TK_MAJOR_VERSION=8 -TK_MINOR_VERSION=1 -# The patch level should be blank for patch releases (i.e. not alpha/beta) -TK_PATCH_LEVEL= +TK_MINOR_VERSION=2 +TK_PATCH_LEVEL="b1" VERSION=${TK_VERSION} if test "${prefix}" = "NONE"; then diff --git a/win/README b/win/README index 9d70bf2..e71a341 100644 --- a/win/README +++ b/win/README @@ -1,10 +1,10 @@ -Tk 8.1 for Windows +Tk 8.2 for Windows by Scott Stanton Scriptics Corporation scott.stanton@scriptics.com -RCS: @(#) $Id: README,v 1.10 1999/04/24 01:50:51 stanton Exp $ +RCS: @(#) $Id: README,v 1.11 1999/06/25 23:30:27 welch Exp $ This is the directory where you configure and compile the Windows version of Tk. This directory also contains source files for Tk diff --git a/win/makefile.vc b/win/makefile.vc index b4c48b7..495b73b 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-1997 Sun Microsystems, Inc. -# RCS: @(#) $Id: makefile.vc,v 1.24 1999/04/21 21:53:32 rjohnson Exp $ +# RCS: @(#) $Id: makefile.vc,v 1.25 1999/06/25 23:30:27 welch Exp $ # Does not depend on the presence of any environment variables in # order to compile tcl; all needed information is derived from @@ -28,7 +28,7 @@ ROOT = .. TOOLS32 = c:\program files\devstudio\vc TOOLS32_rc = c:\program files\devstudio\sharedide -TCLDIR = ..\..\tcl8.1 +TCLDIR = ..\..\tcl8.2 INSTALLDIR = c:\program files\tcl # Set this to the appropriate value of /MACHINE: for your platform @@ -50,8 +50,8 @@ NODEBUG = 1 TCLNAMEPREFIX = tcl TKNAMEPREFIX = tk WISHNAMEPREFIX = wish -VERSION = 81 -DOTVERSION = 8.1 +VERSION = 82 +DOTVERSION = 8.2 TCLSTUBPREFIX = $(TCLNAMEPREFIX)stub TKSTUBPREFIX = $(TKNAMEPREFIX)stub -- cgit v0.12