diff options
author | dgp <dgp@users.sourceforge.net> | 2002-08-26 14:32:17 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2002-08-26 14:32:17 (GMT) |
commit | cba98af9a6ea332576939b71f74b5ffbdb4c61f3 (patch) | |
tree | 9189f9f66eeeb9c03029867745be484adc5af26d /win/winMain.c | |
parent | 76c397a9c55474d5859fcbf98e50f57ab0a55a3c (diff) | |
download | tk-cba98af9a6ea332576939b71f74b5ffbdb4c61f3.zip tk-cba98af9a6ea332576939b71f74b5ffbdb4c61f3.tar.gz tk-cba98af9a6ea332576939b71f74b5ffbdb4c61f3.tar.bz2 |
* win/Makefile.in: Removed dependence on the (parts of) the
* win/winMain.c: tcltest executable on Windows. It was not
used, and the dependency complicated the Makefile. [Bug 592638].
Diffstat (limited to 'win/winMain.c')
-rw-r--r-- | win/winMain.c | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/win/winMain.c b/win/winMain.c index 2d24a4f..a5478a9 100644 --- a/win/winMain.c +++ b/win/winMain.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: winMain.c,v 1.11 2001/08/04 00:29:43 hobbs Exp $ + * RCS: @(#) $Id: winMain.c,v 1.12 2002/08/26 14:32:18 dgp Exp $ */ #include <tk.h> @@ -38,11 +38,6 @@ static void WishPanic _ANSI_ARGS_(TCL_VARARGS(CONST char *,format)); extern int Tktest_Init(Tcl_Interp *interp); #endif /* TK_TEST */ -#ifdef TCL_TEST -extern int TclObjTest_Init _ANSI_ARGS_((Tcl_Interp *interp)); -extern int Tcltest_Init _ANSI_ARGS_((Tcl_Interp *interp)); -#endif /* TCL_TEST */ - static BOOL consoleRequired = TRUE; /* @@ -189,17 +184,6 @@ Tcl_AppInit(interp) } } -#ifdef TCL_TEST - if (Tcltest_Init(interp) == TCL_ERROR) { - return TCL_ERROR; - } - Tcl_StaticPackage(interp, "Tcltest", Tcltest_Init, - (Tcl_PackageInitProc *) NULL); - if (TclObjTest_Init(interp) == TCL_ERROR) { - return TCL_ERROR; - } -#endif /* TCL_TEST */ - #ifdef TK_TEST if (Tktest_Init(interp) == TCL_ERROR) { goto error; |