summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authorescoffon <escoffon@noemail.net>1998-10-07 20:57:26 (GMT)
committerescoffon <escoffon@noemail.net>1998-10-07 20:57:26 (GMT)
commitfc211e780d4c2d7a11bfe63ebbb3b95ad7d66b25 (patch)
tree1880d807836ac0b0e2b59ff98c08b49aa22c3191 /win
parentb353f2ccb988de788b8893d2a6008ef8da4b1e47 (diff)
downloadtk-fc211e780d4c2d7a11bfe63ebbb3b95ad7d66b25.zip
tk-fc211e780d4c2d7a11bfe63ebbb3b95ad7d66b25.tar.gz
tk-fc211e780d4c2d7a11bfe63ebbb3b95ad7d66b25.tar.bz2
Fixed a bug that caused the Tk DLL to be linked against msvcrt.lib for
both debug and nodebug builds. FossilOrigin-Name: 2f6c60e873d14f02212823e27d8fa14ad45d2109
Diffstat (limited to 'win')
-rw-r--r--win/makefile.vc10
1 files changed, 5 insertions, 5 deletions
diff --git a/win/makefile.vc b/win/makefile.vc
index bf7ac93..2c33ee1 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.15 1998/09/30 22:09:23 escoffon Exp $
+# RCS: @(#) $Id: makefile.vc,v 1.16 1998/10/07 20:57:27 escoffon Exp $
# Does not depend on the presence of any environment variables in
# order to compile tcl; all needed information is derived from
@@ -229,11 +229,11 @@ guilflags = $(lflags) -subsystem:windows -entry:WinMainCRTStartup
dlllflags = $(lflags) -entry:_DllMainCRTStartup$(DLLENTRY) -dll
!IF "$(MACHINE)" == "PPC"
-libc = libc.lib
-libcdll = crtdll.lib
+libc = libc$(DBGX).lib
+libcdll = crtdll$(DBGX).lib
!ELSE
-libc = libc.lib oldnames.lib
-libcdll = msvcrt.lib oldnames.lib
+libc = libc$(DBGX).lib oldnames.lib
+libcdll = msvcrt$(DBGX).lib oldnames.lib
!ENDIF
baselibs = kernel32.lib $(optlibs) advapi32.lib