diff options
author | patthoyts <patthoyts@users.sourceforge.net> | 2007-09-17 22:34:42 (GMT) |
---|---|---|
committer | patthoyts <patthoyts@users.sourceforge.net> | 2007-09-17 22:34:42 (GMT) |
commit | d919cf88095340a149d3df492ecc966b0bf6336d (patch) | |
tree | 8e013574f9130f768f49ab0c8b7ee095d091ecd2 | |
parent | 6502142465cc91c57c9846811dc96dd65fec60af (diff) | |
download | tcl-d919cf88095340a149d3df492ecc966b0bf6336d.zip tcl-d919cf88095340a149d3df492ecc966b0bf6336d.tar.gz tcl-d919cf88095340a149d3df492ecc966b0bf6336d.tar.bz2 |
Add crt flags for tclStubLib now it makes use of C-library functions
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | win/makefile.vc | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2007-09-17 Pat Thoyts <patthoyts@users.sourceforge.net> + + * win/makefile.vc: Add crt flags for tclStubLib now it uses + C-library functions + 2007-09-17 Joe English <jenglish@users.sourceforge.net> * tcl.m4: use '${CC} -shared' instead of 'ld -Bshareable' diff --git a/win/makefile.vc b/win/makefile.vc index 294258b..f56c09d 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.164 2007/09/17 08:46:07 patthoyts Exp $ +# RCS: @(#) $Id: makefile.vc,v 1.165 2007/09/17 22:34:44 patthoyts 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) $(OPTDEFINES) +STUB_CFLAGS = $(cflags) $(cdebug) $(crt) $(OPTDEFINES) #--------------------------------------------------------------------- |