diff options
author | dgp <dgp@users.sourceforge.net> | 2007-09-18 16:07:48 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2007-09-18 16:07:48 (GMT) |
commit | 130c96273e714020ab719a63c2d62d4a05c372ce (patch) | |
tree | 965eb91915d249b1c9d6f4930814b44acefb0f66 /win/makefile.vc | |
parent | 6cd49b7a754dcce9b611e4e4042a92a448e3a63e (diff) | |
download | tcl-130c96273e714020ab719a63c2d62d4a05c372ce.zip tcl-130c96273e714020ab719a63c2d62d4a05c372ce.tar.gz tcl-130c96273e714020ab719a63c2d62d4a05c372ce.tar.bz2 |
* generic/tclStubLib.c: Remove C library calls from Tcl_InitStubs()
* win/makefile.vc: so that we don't need the C library linked
in to libtclStub.
Diffstat (limited to 'win/makefile.vc')
-rw-r--r-- | win/makefile.vc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/makefile.vc b/win/makefile.vc index f56c09d..c6e1038 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.165 2007/09/17 22:34:44 patthoyts Exp $ +# RCS: @(#) $Id: makefile.vc,v 1.166 2007/09/18 16:07:51 dgp Exp $ #------------------------------------------------------------------------------ # Check to see we are configured to build with MSVC (MSDEVDIR or MSVCDIR) @@ -459,7 +459,7 @@ BASE_CFLAGS = $(cflags) $(cdebug) $(crt) $(TCL_INCLUDES) \ -DMP_PREC=4 -Dinline=__inline CON_CFLAGS = $(cflags) $(cdebug) $(crt) -DCONSOLE TCL_CFLAGS = $(BASE_CFLAGS) $(OPTDEFINES) -STUB_CFLAGS = $(cflags) $(cdebug) $(crt) $(OPTDEFINES) +STUB_CFLAGS = $(cflags) $(cdebug) $(OPTDEFINES) #--------------------------------------------------------------------- |