summaryrefslogtreecommitdiffstats
path: root/win/makefile.vc
diff options
context:
space:
mode:
authorpatthoyts <patthoyts@noemail.net>2007-09-17 22:40:23 (GMT)
committerpatthoyts <patthoyts@noemail.net>2007-09-17 22:40:23 (GMT)
commit1fe8685571651ec772e89d6c4c625542fbf1ba5c (patch)
tree5978f4663a11863ac0820b2dd1dec9ae9db82363 /win/makefile.vc
parentfb651d42737ecaf2f6bc7dc3bfb9deae3fc8aea5 (diff)
downloadtk-1fe8685571651ec772e89d6c4c625542fbf1ba5c.zip
tk-1fe8685571651ec772e89d6c4c625542fbf1ba5c.tar.gz
tk-1fe8685571651ec772e89d6c4c625542fbf1ba5c.tar.bz2
Add crt flags for tkStubLib now it makes use of C-library functions
FossilOrigin-Name: 9e803e9b278b4fff814bdad02e12f26bc0392e48
Diffstat (limited to 'win/makefile.vc')
-rw-r--r--win/makefile.vc4
1 files changed, 2 insertions, 2 deletions
diff --git a/win/makefile.vc b/win/makefile.vc
index e458adf..19c29aa 100644
--- a/win/makefile.vc
+++ b/win/makefile.vc
@@ -12,7 +12,7 @@
# Copyright (c) 2001-2004 David Gravereaux.
#
#------------------------------------------------------------------------------
-# RCS: @(#) $Id: makefile.vc,v 1.105 2007/09/12 17:10:39 andreas_kupries Exp $
+# RCS: @(#) $Id: makefile.vc,v 1.106 2007/09/17 22:40:25 patthoyts Exp $
#------------------------------------------------------------------------------
# Check to see we are configured to build with MSVC (MSDEVDIR or MSVCDIR)
@@ -470,7 +470,7 @@ BASE_CFLAGS = $(cdebug) $(cflags) $(crt) $(TK_INCLUDES)
TK_CFLAGS = $(BASE_CFLAGS) $(TK_DEFINES) -DUSE_TCL_STUBS
CON_CFLAGS = $(cdebug) $(cflags) $(crt) -DCONSOLE
WISH_CFLAGS = $(BASE_CFLAGS) $(TK_DEFINES)
-STUB_CFLAGS = $(cflags) $(cdebug) $(TK_DEFINES)
+STUB_CFLAGS = $(cflags) $(cdebug) $(crt) $(TK_DEFINES)
#---------------------------------------------------------------------