summaryrefslogtreecommitdiffstats
path: root/unix/dltest/pkge.c
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2003-03-26 20:02:14 (GMT)
committerdgp <dgp@users.sourceforge.net>2003-03-26 20:02:14 (GMT)
commitd4400715593b55eb5389eefc554c1ff293bb0c5f (patch)
tree5781ce48711b600d7847d553a3bc260ae1c606c2 /unix/dltest/pkge.c
parent843c34025cd8e00610703851bb3ef645e36a0040 (diff)
downloadtcl-d4400715593b55eb5389eefc554c1ff293bb0c5f.zip
tcl-d4400715593b55eb5389eefc554c1ff293bb0c5f.tar.gz
tcl-d4400715593b55eb5389eefc554c1ff293bb0c5f.tar.bz2
* unix/dltest/pkg?.c: Changed all Tcl_InitStubs calls to pass
argument exact = 0, so that rebuilds are not required when Tcl bumps to a new version. [Bug 701926]
Diffstat (limited to 'unix/dltest/pkge.c')
-rw-r--r--unix/dltest/pkge.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/dltest/pkge.c b/unix/dltest/pkge.c
index d8f71c2..7460e5e 100644
--- a/unix/dltest/pkge.c
+++ b/unix/dltest/pkge.c
@@ -10,7 +10,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: pkge.c,v 1.5 2000/04/04 08:06:07 hobbs Exp $
+ * RCS: @(#) $Id: pkge.c,v 1.6 2003/03/26 20:02:18 dgp Exp $
*/
#include "tcl.h"
@@ -39,7 +39,7 @@ Pkge_Init(interp)
* to be made available. */
{
static char script[] = "if 44 {open non_existent}";
- if (Tcl_InitStubs(interp, TCL_VERSION, 1) == NULL) {
+ if (Tcl_InitStubs(interp, TCL_VERSION, 0) == NULL) {
return TCL_ERROR;
}
return Tcl_Eval(interp, script);