summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authorstanton <stanton>1998-10-06 02:59:03 (GMT)
committerstanton <stanton>1998-10-06 02:59:03 (GMT)
commitdea1447fbb13d6919f12d85e453da2ce5bec8aab (patch)
treef7db01ee81a9a8c6619295f26901c6c274af940b /win
parent0f8b9130ec96b8ef7ba2abe8b6d6a60cf98707fe (diff)
downloadtcl-dea1447fbb13d6919f12d85e453da2ce5bec8aab.zip
tcl-dea1447fbb13d6919f12d85e453da2ce5bec8aab.tar.gz
tcl-dea1447fbb13d6919f12d85e453da2ce5bec8aab.tar.bz2
merged 8.0.4 changes into 8.1 branch
Diffstat (limited to 'win')
-rw-r--r--win/makefile.vc3
-rw-r--r--win/tclAppInit.c9
2 files changed, 10 insertions, 2 deletions
diff --git a/win/makefile.vc b/win/makefile.vc
index 58e21cb..754163c 100644
--- a/win/makefile.vc
+++ b/win/makefile.vc
@@ -4,7 +4,7 @@
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
# Copyright (c) 1995-1996 Sun Microsystems, Inc.
-# RCS: @(#) $Id: makefile.vc,v 1.1.2.4 1998/10/06 00:42:17 stanton Exp $
+# RCS: @(#) $Id: makefile.vc,v 1.1.2.5 1998/10/06 02:59:06 stanton Exp $
# Does not depend on the presence of any environment variables in
# order to compile tcl; all needed information is derived from
@@ -110,6 +110,7 @@ TCLSHOBJS = \
TCLTESTOBJS = \
$(TMPDIR)\tclTest.obj \
$(TMPDIR)\tclTestObj.obj \
+ $(TMPDIR)\tclTestProcBodyObj.obj \
$(TMPDIR)\tclThreadTest.obj \
$(TMPDIR)\tclWinTest.obj \
$(TMPDIR)\testMain.obj
diff --git a/win/tclAppInit.c b/win/tclAppInit.c
index 1dd2e96..c648b20 100644
--- a/win/tclAppInit.c
+++ b/win/tclAppInit.c
@@ -10,7 +10,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.1.2.2 1998/09/24 23:59:50 stanton Exp $
+ * RCS: @(#) $Id: tclAppInit.c,v 1.1.2.3 1998/10/06 02:59:07 stanton Exp $
*/
#include "tcl.h"
@@ -18,6 +18,8 @@
#include <locale.h>
#ifdef TCL_TEST
+EXTERN int Procbodytest_Init _ANSI_ARGS_((Tcl_Interp *interp));
+EXTERN int Procbodytest_SafeInit _ANSI_ARGS_((Tcl_Interp *interp));
EXTERN int Tcltest_Init _ANSI_ARGS_((Tcl_Interp *interp));
EXTERN int TclObjTest_Init _ANSI_ARGS_((Tcl_Interp *interp));
#ifdef TCL_THREADS
@@ -104,6 +106,11 @@ Tcl_AppInit(interp)
return TCL_ERROR;
}
#endif
+ if (Procbodytest_Init(interp) == TCL_ERROR) {
+ return TCL_ERROR;
+ }
+ Tcl_StaticPackage(interp, "procbodytest", Procbodytest_Init,
+ Procbodytest_SafeInit);
#endif /* TCL_TEST */
/*