diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | win/makefile.vc | 5 |
2 files changed, 7 insertions, 3 deletions
@@ -1,3 +1,8 @@ +2002-12-10 David Gravereaux <davygrvy@pobox.com> + + * win/makefile.vc: tclThreadTest.obj not required to link + tktest.exe [Bug 651396] + 2002-12-08 Jeff Hobbs <jeffh@ActiveState.com> * generic/tkEntry.c (ConfigureEntry): keep a flag to indicate when diff --git a/win/makefile.vc b/win/makefile.vc index 52feff6..ebc82e1 100644 --- a/win/makefile.vc +++ b/win/makefile.vc @@ -12,7 +12,7 @@ # Copyright (c) 2001-2002 David Gravereaux. # #------------------------------------------------------------------------------ -# RCS: @(#) $Id: makefile.vc,v 1.65 2002/11/04 07:49:43 davygrvy Exp $ +# RCS: @(#) $Id: makefile.vc,v 1.66 2002/12/10 22:06:40 davygrvy Exp $ #------------------------------------------------------------------------------ !if "$(MSVCDIR)" == "" @@ -206,8 +206,7 @@ TKTESTOBJS = \ $(TMP_DIR)\tkTest.obj \ $(TMP_DIR)\tkSquare.obj \ $(TMP_DIR)\testMain.obj \ - $(TMP_DIR)\tkWinTest.obj \ - $(TCLTMP_DIR)\tclThreadTest.obj + $(TMP_DIR)\tkWinTest.obj XLIBOBJS = \ $(TMP_DIR)\xcolors.obj \ |