diff options
author | nijtmans <nijtmans@noemail.net> | 2009-11-18 23:46:04 (GMT) |
---|---|---|
committer | nijtmans <nijtmans@noemail.net> | 2009-11-18 23:46:04 (GMT) |
commit | d4717182b8a41281b7635522256c4703bf5bd6d5 (patch) | |
tree | 6938875528242df851eab59fa720c1395ee0f934 /win/tclWinReg.c | |
parent | b0d5421fa166be130f5ee49d5eb7929f4f7b0ff7 (diff) | |
download | tcl-d4717182b8a41281b7635522256c4703bf5bd6d5.zip tcl-d4717182b8a41281b7635522256c4703bf5bd6d5.tar.gz tcl-d4717182b8a41281b7635522256c4703bf5bd6d5.tar.bz2 |
Fix [Bug 2883850]: pkgIndex.tcl doesn't
get created with static Tcl build
FossilOrigin-Name: 39268397d9e495cccd1fe6168edc5d0eb62e8db4
Diffstat (limited to 'win/tclWinReg.c')
-rw-r--r-- | win/tclWinReg.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/win/tclWinReg.c b/win/tclWinReg.c index e6d5b7a..84fda68 100644 --- a/win/tclWinReg.c +++ b/win/tclWinReg.c @@ -11,9 +11,12 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclWinReg.c,v 1.47 2009/11/18 22:02:58 nijtmans Exp $ + * RCS: @(#) $Id: tclWinReg.c,v 1.48 2009/11/18 23:46:05 nijtmans Exp $ */ +#ifndef USE_TCL_STUBS +# define USE_TCL_STUBS +#endif #include "tclInt.h" #ifdef _MSC_VER # pragma comment (lib, "advapi32.lib") |