diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-10-13 09:10:02 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-10-13 09:10:02 (GMT) |
commit | 115a3559d776453b8c58512f151abb875de87f74 (patch) | |
tree | 11e685c259c01751506cd69a37d164e6f30139d2 /win/tclAppInit.c | |
parent | 53fc9a5a6e89fcd4c900863e5d6e083f46cc10c9 (diff) | |
parent | fe00b6dcf66b299d9ea42fa1f9a7282c6475159c (diff) | |
download | tcl-115a3559d776453b8c58512f151abb875de87f74.zip tcl-115a3559d776453b8c58512f151abb875de87f74.tar.gz tcl-115a3559d776453b8c58512f151abb875de87f74.tar.bz2 |
Merge 8.6
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 0b6cbb0..f0fce29 100644 --- a/win/tclAppInit.c +++ b/win/tclAppInit.c @@ -29,7 +29,7 @@ extern Tcl_PackageInitProc Tcltest_Init; extern Tcl_PackageInitProc Tcltest_SafeInit; #endif /* TCL_TEST */ -#if defined(STATIC_BUILD) && TCL_USE_STATIC_PACKAGES +#if defined(STATIC_BUILD) && defined(TCL_USE_STATIC_PACKAGES) && TCL_USE_STATIC_PACKAGES extern Tcl_PackageInitProc Registry_Init; extern Tcl_PackageInitProc Dde_Init; extern Tcl_PackageInitProc Dde_SafeInit; @@ -164,7 +164,7 @@ Tcl_AppInit( return TCL_ERROR; } -#if defined(STATIC_BUILD) && TCL_USE_STATIC_PACKAGES +#if defined(STATIC_BUILD) && defined(TCL_USE_STATIC_PACKAGES) && TCL_USE_STATIC_PACKAGES if (Registry_Init(interp) == TCL_ERROR) { return TCL_ERROR; } |