summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2009-01-16 20:44:24 (GMT)
committerdgp <dgp@users.sourceforge.net>2009-01-16 20:44:24 (GMT)
commit90f1f664938680291c585123226ff1258345487c (patch)
treebe2cac987536e7350362b75e7da50de675b5b65a
parent0888377521223161e6ecfd721eee0bf116bf9c60 (diff)
downloadtcl-90f1f664938680291c585123226ff1258345487c.zip
tcl-90f1f664938680291c585123226ff1258345487c.tar.gz
tcl-90f1f664938680291c585123226ff1258345487c.tar.bz2
* generic/tcl.h: Bump patchlevel to 8.6b1.1 to distinguish
* library/init.tcl: CVS snapshots from the 8.6b1 and 8.6b2 releases * unix/configure.in: and to deal with the fact that the HEAD of * win/configure.in: init.tcl will not [source] in Tcl 8.6b1 . * unix/configure: autoconf-2.59
-rw-r--r--ChangeLog10
-rw-r--r--generic/tcl.h4
-rw-r--r--library/init.tcl4
-rwxr-xr-xunix/configure2
-rw-r--r--unix/configure.in4
-rwxr-xr-xwin/configure2
-rw-r--r--win/configure.in4
7 files changed, 20 insertions, 10 deletions
diff --git a/ChangeLog b/ChangeLog
index 8e612a5..5b2cceb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2009-01-16 Don Porter <dgp@users.sourceforge.net>
+
+ * generic/tcl.h: Bump patchlevel to 8.6b1.1 to distinguish
+ * library/init.tcl: CVS snapshots from the 8.6b1 and 8.6b2 releases
+ * unix/configure.in: and to deal with the fact that the HEAD of
+ * win/configure.in: init.tcl will not [source] in Tcl 8.6b1 .
+
+ * unix/configure: autoconf-2.59
+ * win/configure:
+
2009-01-14 Don Porter <dgp@users.sourceforge.net>
* generic/tclBasic.c (Tcl_DeleteCommandFromToken): Reverted
diff --git a/generic/tcl.h b/generic/tcl.h
index d90115e..72c4acd 100644
--- a/generic/tcl.h
+++ b/generic/tcl.h
@@ -14,7 +14,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tcl.h,v 1.287 2009/01/16 09:20:18 patthoyts Exp $
+ * RCS: @(#) $Id: tcl.h,v 1.288 2009/01/16 20:44:24 dgp Exp $
*/
#ifndef _TCL
@@ -64,7 +64,7 @@ extern "C" {
#define TCL_RELEASE_SERIAL 1
#define TCL_VERSION "8.6"
-#define TCL_PATCH_LEVEL "8.6b1"
+#define TCL_PATCH_LEVEL "8.6b1.1"
/*
* The following definitions set up the proper options for Windows compilers.
diff --git a/library/init.tcl b/library/init.tcl
index 74fd5f4..3ec3079 100644
--- a/library/init.tcl
+++ b/library/init.tcl
@@ -3,7 +3,7 @@
# Default system startup file for Tcl-based applications. Defines
# "unknown" procedure and auto-load facilities.
#
-# RCS: @(#) $Id: init.tcl,v 1.119 2009/01/13 20:30:04 dkf Exp $
+# RCS: @(#) $Id: init.tcl,v 1.120 2009/01/16 20:44:25 dgp Exp $
#
# Copyright (c) 1991-1993 The Regents of the University of California.
# Copyright (c) 1994-1996 Sun Microsystems, Inc.
@@ -17,7 +17,7 @@
if {[info commands package] == ""} {
error "version mismatch: library\nscripts expect Tcl version 7.5b1 or later but the loaded version is\nonly [info patchlevel]"
}
-package require -exact Tcl 8.6b1
+package require -exact Tcl 8.6b1.1
# Compute the auto path to use in this interpreter.
# The values on the path come from several locations:
diff --git a/unix/configure b/unix/configure
index a06232d..f5eb7fc 100755
--- a/unix/configure
+++ b/unix/configure
@@ -1335,7 +1335,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
TCL_VERSION=8.6
TCL_MAJOR_VERSION=8
TCL_MINOR_VERSION=6
-TCL_PATCH_LEVEL="b1"
+TCL_PATCH_LEVEL="b1.1"
VERSION=${TCL_VERSION}
#------------------------------------------------------------------------
diff --git a/unix/configure.in b/unix/configure.in
index f97ded3..d569862 100644
--- a/unix/configure.in
+++ b/unix/configure.in
@@ -3,7 +3,7 @@ dnl This file is an input file used by the GNU "autoconf" program to
dnl generate the file "configure", which is run during Tcl installation
dnl to configure the system for the local environment.
#
-# RCS: @(#) $Id: configure.in,v 1.204 2009/01/03 13:55:09 das Exp $
+# RCS: @(#) $Id: configure.in,v 1.205 2009/01/16 20:44:25 dgp Exp $
AC_INIT([tcl],[8.6])
AC_PREREQ(2.59)
@@ -27,7 +27,7 @@ m4_ifdef([SC_USE_CONFIG_HEADERS], [
TCL_VERSION=8.6
TCL_MAJOR_VERSION=8
TCL_MINOR_VERSION=6
-TCL_PATCH_LEVEL="b1"
+TCL_PATCH_LEVEL="b1.1"
VERSION=${TCL_VERSION}
#------------------------------------------------------------------------
diff --git a/win/configure b/win/configure
index 8b96430..399c326 100755
--- a/win/configure
+++ b/win/configure
@@ -1272,7 +1272,7 @@ SHELL=/bin/sh
TCL_VERSION=8.6
TCL_MAJOR_VERSION=8
TCL_MINOR_VERSION=6
-TCL_PATCH_LEVEL="b1"
+TCL_PATCH_LEVEL="b1.1"
VER=$TCL_MAJOR_VERSION$TCL_MINOR_VERSION
TCL_DDE_VERSION=1.3
diff --git a/win/configure.in b/win/configure.in
index 8b8e61d..33f40cc 100644
--- a/win/configure.in
+++ b/win/configure.in
@@ -3,7 +3,7 @@
# generate the file "configure", which is run during Tcl installation
# to configure the system for the local environment.
#
-# RCS: @(#) $Id: configure.in,v 1.115 2008/12/20 21:40:27 kennykb Exp $
+# RCS: @(#) $Id: configure.in,v 1.116 2009/01/16 20:44:25 dgp Exp $
AC_INIT(../generic/tcl.h)
AC_PREREQ(2.59)
@@ -16,7 +16,7 @@ SHELL=/bin/sh
TCL_VERSION=8.6
TCL_MAJOR_VERSION=8
TCL_MINOR_VERSION=6
-TCL_PATCH_LEVEL="b1"
+TCL_PATCH_LEVEL="b1.1"
VER=$TCL_MAJOR_VERSION$TCL_MINOR_VERSION
TCL_DDE_VERSION=1.3