diff options
author | davygrvy <davygrvy@pobox.com> | 2004-01-16 02:46:10 (GMT) |
---|---|---|
committer | davygrvy <davygrvy@pobox.com> | 2004-01-16 02:46:10 (GMT) |
commit | 06f094e0f0484e7ae97052bec921737dff4cb119 (patch) | |
tree | 2f00adadf59ff3306cedc016fda18fcee1850823 /win/tclAppInit.c | |
parent | f7e88067e740c8f9708407e3770a1e1bb611d6ea (diff) | |
download | tcl-06f094e0f0484e7ae97052bec921737dff4cb119.zip tcl-06f094e0f0484e7ae97052bec921737dff4cb119.tar.gz tcl-06f094e0f0484e7ae97052bec921737dff4cb119.tar.bz2 |
Same change in how TCL_USE_STATIC_PACKAGES is used.
Diffstat (limited to 'win/tclAppInit.c')
-rw-r--r-- | win/tclAppInit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/tclAppInit.c b/win/tclAppInit.c index fd3a5d1..0b1d659 100644 --- a/win/tclAppInit.c +++ b/win/tclAppInit.c @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclAppInit.c,v 1.15 2003/10/14 22:48:06 davygrvy Exp $ + * RCS: @(#) $Id: tclAppInit.c,v 1.16 2004/01/16 02:46:10 davygrvy Exp $ */ #include "tcl.h" @@ -180,7 +180,7 @@ Tcl_AppInit(interp) Procbodytest_SafeInit); #endif /* TCL_TEST */ -#if defined(STATIC_BUILD) && defined(TCL_USE_STATIC_PACKAGES) +#if defined(STATIC_BUILD) && TCL_USE_STATIC_PACKAGES { extern Tcl_PackageInitProc Registry_Init; extern Tcl_PackageInitProc Dde_Init; |