summaryrefslogtreecommitdiffstats
path: root/win/makefile.vc
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2007-09-18 16:12:17 (GMT)
committerdgp <dgp@users.sourceforge.net>2007-09-18 16:12:17 (GMT)
commit44599189a7685027323fc4cd33c48918d5716ee0 (patch)
tree669a623378b5e9d5ce87aa79a2d14a85a0e67b38 /win/makefile.vc
parent9796d2d3945b437083d79e6c8e2333aec0b3f577 (diff)
downloadtk-44599189a7685027323fc4cd33c48918d5716ee0.zip
tk-44599189a7685027323fc4cd33c48918d5716ee0.tar.gz
tk-44599189a7685027323fc4cd33c48918d5716ee0.tar.bz2
* generic/tkStubLib.c: Remove C library calls from Tk_InitStubs()
* win/makefile.vc: so that we don't need the C library linked in to libtkStub.
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 19c29aa..e413fd5 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.106 2007/09/17 22:40:25 patthoyts Exp $
+# RCS: @(#) $Id: makefile.vc,v 1.107 2007/09/18 16:12:19 dgp 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) $(crt) $(TK_DEFINES)
+STUB_CFLAGS = $(cflags) $(cdebug) $(TK_DEFINES)
#---------------------------------------------------------------------