summaryrefslogtreecommitdiffstats
path: root/unix/dltest/pkgd.c
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 /unix/dltest/pkgd.c
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 'unix/dltest/pkgd.c')
-rw-r--r--unix/dltest/pkgd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/dltest/pkgd.c b/unix/dltest/pkgd.c
index df7bbc9..c708df0 100644
--- a/unix/dltest/pkgd.c
+++ b/unix/dltest/pkgd.c
@@ -113,7 +113,7 @@ Pkgd_Init(
{
int code;
- if (Tcl_InitStubs(interp, TCL_VERSION, 0) == NULL) {
+ if (Tcl_InitStubs(interp, "8.5-", 0) == NULL) {
return TCL_ERROR;
}
code = Tcl_PkgProvide(interp, "Pkgd", "7.3");
@@ -150,7 +150,7 @@ Pkgd_SafeInit(
{
int code;
- if (Tcl_InitStubs(interp, TCL_VERSION, 0) == NULL) {
+ if (Tcl_InitStubs(interp, "8.5-", 0) == NULL) {
return TCL_ERROR;
}
code = Tcl_PkgProvide(interp, "Pkgd", "7.3");