diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2002-06-22 00:02:49 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2002-06-22 00:02:49 (GMT) |
commit | 82d64fe1ff3f58d1627c0bf2add58fae0316f132 (patch) | |
tree | 4e8f344ec70d745ee498d5f37d493fb26dd4e91b | |
parent | 8eb7ac8c2d136c16c0aa3f118cd91588bf9e9f4b (diff) | |
download | tk-82d64fe1ff3f58d1627c0bf2add58fae0316f132.zip tk-82d64fe1ff3f58d1627c0bf2add58fae0316f132.tar.gz tk-82d64fe1ff3f58d1627c0bf2add58fae0316f132.tar.bz2 |
Tk patchlevel bumped to 8.4b1 in preparation for release.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | README | 4 | ||||
-rw-r--r-- | generic/tk.h | 8 | ||||
-rw-r--r-- | unix/configure.in | 4 | ||||
-rw-r--r-- | unix/tk.spec | 6 | ||||
-rw-r--r-- | win/configure.in | 4 |
6 files changed, 18 insertions, 13 deletions
@@ -1,3 +1,8 @@ +2002-06-22 Donal K. Fellows <fellowsd@cs.man.ac.uk> + + * unix/tk.spec (version), README, win/configure.in, unix/configure.in: + * generic/tk.h (TK_RELEASE_*, TK_PATCH_LEVEL): Bumped to beta1. + 2002-06-21 Jeff Hobbs <jeffh@ActiveState.com> * doc/text.n: TIP #104 implementation which generalizes the @@ -1,11 +1,11 @@ README: Tk - This is the Tk 8.4a5 source distribution. + This is the Tk 8.4b1 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.33 2002/03/06 15:36:17 dkf Exp $ +RCS: @(#) $Id: README,v 1.34 2002/06/22 00:02:49 dkf Exp $ 1. Introduction --------------- diff --git a/generic/tk.h b/generic/tk.h index 6f7bbb9..38a1590 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.63 2002/06/18 23:51:46 dkf Exp $ + * RCS: @(#) $Id: tk.h,v 1.64 2002/06/22 00:02:49 dkf Exp $ */ #ifndef _TK @@ -47,11 +47,11 @@ extern "C" { #define TK_MAJOR_VERSION 8 #define TK_MINOR_VERSION 4 -#define TK_RELEASE_LEVEL TCL_ALPHA_RELEASE -#define TK_RELEASE_SERIAL 5 +#define TK_RELEASE_LEVEL TCL_BETA_RELEASE +#define TK_RELEASE_SERIAL 1 #define TK_VERSION "8.4" -#define TK_PATCH_LEVEL "8.4a5" +#define TK_PATCH_LEVEL "8.4b1" /* * The following definitions set up the proper options for Macintosh diff --git a/unix/configure.in b/unix/configure.in index fab84cf..b988a81 100644 --- a/unix/configure.in +++ b/unix/configure.in @@ -3,14 +3,14 @@ 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. # -# RCS: @(#) $Id: configure.in,v 1.72 2002/05/21 18:27:31 mdejong Exp $ +# RCS: @(#) $Id: configure.in,v 1.73 2002/06/22 00:02:49 dkf Exp $ AC_INIT(../generic/tk.h) TK_VERSION=8.4 TK_MAJOR_VERSION=8 TK_MINOR_VERSION=4 -TK_PATCH_LEVEL="a5" +TK_PATCH_LEVEL="b1" VERSION=${TK_VERSION} LOCALES="de en es fr" diff --git a/unix/tk.spec b/unix/tk.spec index e226c92..ce446d3 100644 --- a/unix/tk.spec +++ b/unix/tk.spec @@ -1,7 +1,7 @@ -# $Id: tk.spec,v 1.9 2002/03/06 15:36:17 dkf Exp $ +# $Id: tk.spec,v 1.10 2002/06/22 00:02:50 dkf Exp $ # This file is the basis for a binary Tk Linux RPM. -%define version 8.4a5 +%define version 8.4b1 %define directory /usr/local Summary: Tk graphical toolkit for the Tcl scripting language. @@ -14,7 +14,7 @@ Source: http://prdownloads.sourceforge.net/tcl/tk%{version}-src.tar.gz URL: http://www.tcl.tk/ Packager: Carina Buildroot: /var/tmp/%{name}%{version} -Requires: XFree86-libs >= 3.3.3, XFree86-devel >= 3.3.3, tcl = 8.4a5 +Requires: XFree86-libs >= 3.3.3, XFree86-devel >= 3.3.3, tcl = 8.4b1 %description The Tcl (Tool Command Language) provides a powerful platform for diff --git a/win/configure.in b/win/configure.in index a57631d..9551105 100644 --- a/win/configure.in +++ b/win/configure.in @@ -3,14 +3,14 @@ # generate the file "configure", which is run during Tk installation # to configure the system for the local environment. # -# RCS: @(#) $Id: configure.in,v 1.41 2002/03/06 15:36:17 dkf Exp $ +# RCS: @(#) $Id: configure.in,v 1.42 2002/06/22 00:02:50 dkf Exp $ AC_INIT(../generic/tk.h) TK_VERSION=8.4 TK_MAJOR_VERSION=8 TK_MINOR_VERSION=4 -TK_PATCH_LEVEL="a5" +TK_PATCH_LEVEL="b1" VER=$TK_MAJOR_VERSION$TK_MINOR_VERSION #------------------------------------------------------------------------ |