Skip to content

Commit e1ce065

Browse files
author
jan.nijtmans
committed
Version -> 2.8.13
1 parent 08fe700 commit e1ce065

File tree

8 files changed

+17
-16
lines changed

8 files changed

+17
-16
lines changed

configure

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /bin/sh
22
# Guess values for system-dependent variables and create Makefiles.
3-
# Generated by GNU Autoconf 2.72 for thread 2.8.12.
3+
# Generated by GNU Autoconf 2.72 for thread 2.8.13.
44
#
55
#
66
# Copyright (C) 1992-1996, 1998-2017, 2020-2023 Free Software Foundation,
@@ -601,8 +601,8 @@ MAKEFLAGS=
601601
# Identity of this package.
602602
PACKAGE_NAME='thread'
603603
PACKAGE_TARNAME='thread'
604-
PACKAGE_VERSION='2.8.12'
605-
PACKAGE_STRING='thread 2.8.12'
604+
PACKAGE_VERSION='2.8.13'
605+
PACKAGE_STRING='thread 2.8.13'
606606
PACKAGE_BUGREPORT=''
607607
PACKAGE_URL=''
608608

@@ -1325,7 +1325,7 @@ if test "$ac_init_help" = "long"; then
13251325
# Omit some internal or obsolete options to make the list less imposing.
13261326
# This message is too long to be a string in the A/UX 3.1 sh.
13271327
cat <<_ACEOF
1328-
'configure' configures thread 2.8.12 to adapt to many kinds of systems.
1328+
'configure' configures thread 2.8.13 to adapt to many kinds of systems.
13291329
13301330
Usage: $0 [OPTION]... [VAR=VALUE]...
13311331
@@ -1387,7 +1387,7 @@ fi
13871387

13881388
if test -n "$ac_init_help"; then
13891389
case $ac_init_help in
1390-
short | recursive ) echo "Configuration of thread 2.8.12:";;
1390+
short | recursive ) echo "Configuration of thread 2.8.13:";;
13911391
esac
13921392
cat <<\_ACEOF
13931393
@@ -1492,7 +1492,7 @@ fi
14921492
test -n "$ac_init_help" && exit $ac_status
14931493
if $ac_init_version; then
14941494
cat <<\_ACEOF
1495-
thread configure 2.8.12
1495+
thread configure 2.8.13
14961496
generated by GNU Autoconf 2.72
14971497
14981498
Copyright (C) 2023 Free Software Foundation, Inc.
@@ -1799,7 +1799,7 @@ cat >config.log <<_ACEOF
17991799
This file contains any messages produced by compilers while
18001800
running configure, to aid debugging if configure makes a mistake.
18011801
1802-
It was created by thread $as_me 2.8.12, which was
1802+
It was created by thread $as_me 2.8.13, which was
18031803
generated by GNU Autoconf 2.72. Invocation command line was
18041804
18051805
$ $0$ac_configure_args_raw
@@ -6790,6 +6790,7 @@ fi
67906790
MACHINE="IA64"
67916791
;;
67926792
esac
6793+
do64bit_ok=yes
67936794
fi
67946795

67956796
if test "$GCC" != "yes" ; then
@@ -10016,7 +10017,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
1001610017
# report actual input values of CONFIG_FILES etc. instead of their
1001710018
# values after options handling.
1001810019
ac_log="
10019-
This file was extended by thread $as_me 2.8.12, which was
10020+
This file was extended by thread $as_me 2.8.13, which was
1002010021
generated by GNU Autoconf 2.72. Invocation command line was
1002110022
1002210023
CONFIG_FILES = $CONFIG_FILES
@@ -10071,7 +10072,7 @@ ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\
1007110072
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
1007210073
ac_cs_config='$ac_cs_config_escaped'
1007310074
ac_cs_version="\\
10074-
thread config.status 2.8.12
10075+
thread config.status 2.8.13
1007510076
configured by $0, generated by GNU Autoconf 2.72,
1007610077
with options \\"\$ac_cs_config\\"
1007710078

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ dnl to configure the system for the local environment.
1717
# so you can encode the package version directly into the source files.
1818
#-----------------------------------------------------------------------
1919

20-
AC_INIT([thread],[2.8.12])
20+
AC_INIT([thread],[2.8.13])
2121

2222
#--------------------------------------------------------------------
2323
# Call TEA_INIT as the first TEA_ macro to set up initial vars.

doc/html/ttrace.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ <h1 class="doctools_title">ttrace(n) 2.8 &quot;Tcl Threading&quot;</h1>
152152
with the Tcl threading extension:</p>
153153
<pre class="doctools_example">
154154
% package require Ttrace
155-
2.8.2
155+
2.8.13
156156
% set t1 [thread::create {package require Ttrace; thread::wait}]
157157
tid0x1802800
158158
% ttrace::eval {proc test args {return test-[thread::id]}}

doc/ttrace.man

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ with the Tcl threading extension:
2121
[example {
2222

2323
% package require Ttrace
24-
2.8.2
24+
2.8.13
2525

2626
% set t1 [thread::create {package require Ttrace; thread::wait}]
2727
tid0x1802800

generic/threadCmd.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* files built as part of that shell. Example: basekits.
2929
*/
3030
#ifndef PACKAGE_VERSION
31-
#define PACKAGE_VERSION "2.8.12"
31+
#define PACKAGE_VERSION "2.8.13"
3232
#endif
3333

3434
/*

lib/ttrace.tcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ namespace eval ttrace {
7373
}
7474

7575
# Keep in sync with the Thread package
76-
package provide Ttrace 2.8.12
76+
package provide Ttrace 2.8.13
7777

7878
# Package variables
7979
variable resolvers "" ; # List of registered resolvers

project.shed

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ e47b6a79a963c99b7de15a4817b3010fbb3dd693 {
6464
entity {
6565
name: thread
6666
shed_class: package
67-
version: 2.8.12
67+
version: 2.8.13
6868
}
6969
meta {
7070
build: tea

win/pkg.vc

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

44
PACKAGE_MAJOR = 2
55
PACKAGE_MINOR = 8
6-
PACKAGE_VERSION = "2.8.12"
6+
PACKAGE_VERSION = "2.8.13"

0 commit comments

Comments
 (0)