summaryrefslogtreecommitdiffstats
path: root/unix/tkAppInit.c
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2002-06-21 20:24:28 (GMT)
committerdgp <dgp@users.sourceforge.net>2002-06-21 20:24:28 (GMT)
commitd14e8172b80a28a0249cbb292722f343377084e4 (patch)
tree1e20e4c8f678ab29d5692f249f20531cfa08961f /unix/tkAppInit.c
parent093ba20aa9429d1193d14f69c01efa197fb23b02 (diff)
downloadtk-d14e8172b80a28a0249cbb292722f343377084e4.zip
tk-d14e8172b80a28a0249cbb292722f343377084e4.tar.gz
tk-d14e8172b80a28a0249cbb292722f343377084e4.tar.bz2
* Removed unnecessary dependence of tktest executable on the tcltest
executable on Unix. If there are similar dependencies on other platforms, they can probably be removed as well. [Bug 572134].
Diffstat (limited to 'unix/tkAppInit.c')
-rw-r--r--unix/tkAppInit.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/unix/tkAppInit.c b/unix/tkAppInit.c
index 395a39d..3a215fe 100644
--- a/unix/tkAppInit.c
+++ b/unix/tkAppInit.c
@@ -10,14 +10,13 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tkAppInit.c,v 1.6 2002/06/14 22:01:37 andreas_kupries Exp $
+ * RCS: @(#) $Id: tkAppInit.c,v 1.7 2002/06/21 20:24:29 dgp Exp $
*/
#include "tk.h"
#include "locale.h"
#ifdef TK_TEST
-extern int Tcltest_Init _ANSI_ARGS_((Tcl_Interp *interp));
extern int Tktest_Init _ANSI_ARGS_((Tcl_Interp *interp));
#endif /* TK_TEST */
@@ -101,11 +100,6 @@ Tcl_AppInit(interp)
}
Tcl_StaticPackage(interp, "Tk", Tk_Init, Tk_SafeInit);
#ifdef TK_TEST
- if (Tcltest_Init(interp) == TCL_ERROR) {
- return TCL_ERROR;
- }
- Tcl_StaticPackage(interp, "Tcltest", Tcltest_Init,
- (Tcl_PackageInitProc *) NULL);
if (Tktest_Init(interp) == TCL_ERROR) {
return TCL_ERROR;
}