summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2016-12-20 09:36:50 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2016-12-20 09:36:50 (GMT)
commitb258cc76aba7c7cb1906d863944bb4cd6ea5d1a4 (patch)
tree9fdbe37405ebe23e1d7e77f2455ac88ab2096bc7 /tools
parent43b22f924faa4963e0238f2191f56270c8d90b81 (diff)
downloadtcl-b258cc76aba7c7cb1906d863944bb4cd6ea5d1a4.zip
tcl-b258cc76aba7c7cb1906d863944bb4cd6ea5d1a4.tar.gz
tcl-b258cc76aba7c7cb1906d863944bb4cd6ea5d1a4.tar.bz2
Record the fact that all stub-enabled extensions work in Tcl 8.5+, no 8.6 (or 9.0) features are needed. (Differences between 8.x and 9.0 are handled by a different stub magic value)
Diffstat (limited to 'tools')
-rw-r--r--tools/tsdPerf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/tsdPerf.c b/tools/tsdPerf.c
index 40004b1..a75e962 100644
--- a/tools/tsdPerf.c
+++ b/tools/tsdPerf.c
@@ -40,7 +40,7 @@ tsdPerfGetObjCmd(ClientData cdata, Tcl_Interp *interp, int objc, Tcl_Obj *const
int
Tsdperf_Init(Tcl_Interp *interp) {
- if (Tcl_InitStubs(interp, TCL_VERSION, 0) == NULL) {
+ if (Tcl_InitStubs(interp, "8.5-", 0) == NULL) {
return TCL_ERROR;
}