diff options
| author | nijtmans <nijtmans> | 2009-11-18 23:46:05 (GMT) |
|---|---|---|
| committer | nijtmans <nijtmans> | 2009-11-18 23:46:05 (GMT) |
| commit | 3e0dde4b2e96b9ed5c3d07db6bc0f63e4f8fa5b2 (patch) | |
| tree | 6938875528242df851eab59fa720c1395ee0f934 /generic/tclTestObj.c | |
| parent | 3f9cdd2576ce81164f6caa0f7ff6fb3cd6d51734 (diff) | |
| download | tcl-3e0dde4b2e96b9ed5c3d07db6bc0f63e4f8fa5b2.zip tcl-3e0dde4b2e96b9ed5c3d07db6bc0f63e4f8fa5b2.tar.gz tcl-3e0dde4b2e96b9ed5c3d07db6bc0f63e4f8fa5b2.tar.bz2 | |
Fix [Bug 2883850]: pkgIndex.tcl doesn't
get created with static Tcl build
Diffstat (limited to 'generic/tclTestObj.c')
| -rw-r--r-- | generic/tclTestObj.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/generic/tclTestObj.c b/generic/tclTestObj.c index dba06f9..43a64cd 100644 --- a/generic/tclTestObj.c +++ b/generic/tclTestObj.c @@ -13,9 +13,12 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclTestObj.c,v 1.34 2009/02/16 04:33:10 dgp Exp $ + * RCS: @(#) $Id: tclTestObj.c,v 1.35 2009/11/18 23:46:05 nijtmans Exp $ */ +#ifndef USE_TCL_STUBS +# define USE_TCL_STUBS +#endif #include "tclInt.h" #include "tommath.h" @@ -996,7 +999,7 @@ TeststringobjCmd( TestString *strPtr; static const char *const options[] = { "append", "appendstrings", "get", "get2", "length", "length2", - "set", "set2", "setlength", "maxchars", "getunicode", + "set", "set2", "setlength", "maxchars", "getunicode", "appendself", "appendself2", NULL }; |
