summaryrefslogtreecommitdiffstats
path: root/unix/tclAppInit.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2013-03-31 20:17:46 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2013-03-31 20:17:46 (GMT)
commit449ea437180bc44e39e63c8126f8f654aeb98b0a (patch)
tree8605c4cb1e2d105904e3f8e5486415b6629ed2a5 /unix/tclAppInit.c
parent11593d64b8c9f241f43da823c00c9999cf84fcd5 (diff)
parent260c2634b9c296b79c7c6adc8326214233e38d87 (diff)
downloadtcl-449ea437180bc44e39e63c8126f8f654aeb98b0a.zip
tcl-449ea437180bc44e39e63c8126f8f654aeb98b0a.tar.gz
tcl-449ea437180bc44e39e63c8126f8f654aeb98b0a.tar.bz2
Going forward trying to define a better Tcl_InitStubsystems()
Diffstat (limited to 'unix/tclAppInit.c')
-rw-r--r--unix/tclAppInit.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/unix/tclAppInit.c b/unix/tclAppInit.c
index f3edcff..171c1a4 100644
--- a/unix/tclAppInit.c
+++ b/unix/tclAppInit.c
@@ -12,8 +12,7 @@
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*/
-#undef BUILD_tcl
-#undef STATIC_BUILD
+#define USE_TCL_STUBS
#include "tcl.h"
#ifdef TCL_TEST
@@ -150,10 +149,10 @@ Tcl_AppInit(
*/
#ifdef DJGPP
- (Tcl_ObjSetVar2)(interp, Tcl_NewStringObj("tcl_rcFileName", -1), NULL,
+ Tcl_ObjSetVar2(interp, Tcl_NewStringObj("tcl_rcFileName", -1), NULL,
Tcl_NewStringObj("~/tclsh.rc", -1), TCL_GLOBAL_ONLY);
#else
- (Tcl_ObjSetVar2)(interp, Tcl_NewStringObj("tcl_rcFileName", -1), NULL,
+ Tcl_ObjSetVar2(interp, Tcl_NewStringObj("tcl_rcFileName", -1), NULL,
Tcl_NewStringObj("~/.tclshrc", -1), TCL_GLOBAL_ONLY);
#endif