diff options
| author | patthoyts@users.sourceforge.net <patthoyts> | 2007-09-17 22:34:42 (GMT) |
|---|---|---|
| committer | patthoyts@users.sourceforge.net <patthoyts> | 2007-09-17 22:34:42 (GMT) |
| commit | 362b2fdebea1d7586b101addd80d7b5181c63a8c (patch) | |
| tree | 8e013574f9130f768f49ab0c8b7ee095d091ecd2 | |
| parent | fddd6f299fc04ecb5d4295def96ab7738b8a2ab9 (diff) | |
| download | tcl-362b2fdebea1d7586b101addd80d7b5181c63a8c.zip tcl-362b2fdebea1d7586b101addd80d7b5181c63a8c.tar.gz tcl-362b2fdebea1d7586b101addd80d7b5181c63a8c.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) #--------------------------------------------------------------------- |
