Skip to content

Commit d24813a

Browse files
author
jan.nijtmans
committed
version -> 8.6.17
1 parent 1137fda commit d24813a

File tree

10 files changed

+11
-14
lines changed

10 files changed

+11
-14
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# README: Tk
22

3-
This is the **Tk 8.6.16** source distribution.
3+
This is the **Tk 8.6.17** source distribution.
44

55
You can get any source release of Tk from [our distribution
66
site](https://sourceforge.net/projects/tcl/files/Tcl/).

generic/tk.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,10 @@ extern "C" {
7575
#define TK_MAJOR_VERSION 8
7676
#define TK_MINOR_VERSION 6
7777
#define TK_RELEASE_LEVEL TCL_FINAL_RELEASE
78-
#define TK_RELEASE_SERIAL 16
78+
#define TK_RELEASE_SERIAL 17
7979

8080
#define TK_VERSION "8.6"
81-
#define TK_PATCH_LEVEL "8.6.16"
81+
#define TK_PATCH_LEVEL "8.6.17"
8282

8383
/*
8484
* A special definition used to allow this header file to be included from

library/tk.tcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# this file, and for a DISCLAIMER OF ALL WARRANTIES.
1212

1313
# Verify that we have Tk binary and script components from the same release
14-
package require -exact Tk 8.6.16
14+
package require -exact Tk 8.6.17
1515

1616
# Create a ::tk namespace
1717
namespace eval ::tk {

unix/Makefile.in

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1547,9 +1547,6 @@ DISTROOT = /tmp/dist
15471547
DISTNAME = tk${VERSION}${PATCH_LEVEL}
15481548
ZIPNAME = tk${MAJOR_VERSION}${MINOR_VERSION}${PATCH_LEVEL}-src.zip
15491549
DISTDIR = $(DISTROOT)/$(DISTNAME)
1550-
$(UNIX_DIR)/configure: $(UNIX_DIR)/configure.in $(UNIX_DIR)/tcl.m4 \
1551-
$(UNIX_DIR)/aclocal.m4
1552-
cd $(UNIX_DIR); autoconf
15531550
$(MAC_OSX_DIR)/configure: $(MAC_OSX_DIR)/configure.ac $(UNIX_DIR)/configure
15541551
cd $(MAC_OSX_DIR); autoconf
15551552
$(UNIX_DIR)/tkConfig.h.in: $(MAC_OSX_DIR)/configure

unix/configure

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1338,7 +1338,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
13381338
TK_VERSION=8.6
13391339
TK_MAJOR_VERSION=8
13401340
TK_MINOR_VERSION=6
1341-
TK_PATCH_LEVEL=".16"
1341+
TK_PATCH_LEVEL=".17"
13421342
VERSION=${TK_VERSION}
13431343
LOCALES="cs da de el en en_gb eo es fr hu it nl pl pt ru sv"
13441344
@@ -4496,7 +4496,7 @@ fi
44964496
;;
44974497
*)
44984498
# Make sure only first arg gets _r
4499-
CC=`echo "$CC" | sed -e 's/^\([^ ]*\)/\1_r/'`
4499+
CC=`echo "$CC" | sed -e 's/^\([^ ]*\)/\1_r/'`
45004500
;;
45014501
esac
45024502
echo "$as_me:$LINENO: result: Using $CC for compiling with threads" >&5

unix/configure.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ m4_ifdef([SC_USE_CONFIG_HEADERS], [
2626
TK_VERSION=8.6
2727
TK_MAJOR_VERSION=8
2828
TK_MINOR_VERSION=6
29-
TK_PATCH_LEVEL=".16"
29+
TK_PATCH_LEVEL=".17"
3030
VERSION=${TK_VERSION}
3131
LOCALES="cs da de el en en_gb eo es fr hu it nl pl pt ru sv"
3232

unix/tcl.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1096,7 +1096,7 @@ AC_DEFUN([SC_CONFIG_CFLAGS], [
10961096
;;
10971097
*)
10981098
# Make sure only first arg gets _r
1099-
CC=`echo "$CC" | sed -e 's/^\([[^ ]]*\)/\1_r/'`
1099+
CC=`echo "$CC" | sed -e 's/^\([[^ ]]*\)/\1_r/'`
11001100
;;
11011101
esac
11021102
AC_MSG_RESULT([Using $CC for compiling with threads])

unix/tk.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Name: tk
66
Summary: Tk graphical toolkit for the Tcl scripting language.
7-
Version: 8.6.16
7+
Version: 8.6.17
88
Release: 2
99
License: BSD
1010
Group: Development/Languages

win/configure

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1325,7 +1325,7 @@ SHELL=/bin/sh
13251325
TK_VERSION=8.6
13261326
TK_MAJOR_VERSION=8
13271327
TK_MINOR_VERSION=6
1328-
TK_PATCH_LEVEL=".16"
1328+
TK_PATCH_LEVEL=".17"
13291329
VER=$TK_MAJOR_VERSION$TK_MINOR_VERSION
13301330
13311331
#------------------------------------------------------------------------

win/configure.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ SHELL=/bin/sh
1515
TK_VERSION=8.6
1616
TK_MAJOR_VERSION=8
1717
TK_MINOR_VERSION=6
18-
TK_PATCH_LEVEL=".16"
18+
TK_PATCH_LEVEL=".17"
1919
VER=$TK_MAJOR_VERSION$TK_MINOR_VERSION
2020

2121
#------------------------------------------------------------------------

0 commit comments

Comments
 (0)