diff options
author | patthoyts <patthoyts@users.sourceforge.net> | 2007-10-12 14:09:45 (GMT) |
---|---|---|
committer | patthoyts <patthoyts@users.sourceforge.net> | 2007-10-12 14:09:45 (GMT) |
commit | 6d5195c7cd4b47c7572cce5319cc755bade68df7 (patch) | |
tree | 961bfe1c8e03aaadd0f099267001adb3f7f4957a /win/nmakehlp.c | |
parent | e1a807be79aa00846159b6f20ade620cb6065172 (diff) | |
download | tcl-6d5195c7cd4b47c7572cce5319cc755bade68df7.zip tcl-6d5195c7cd4b47c7572cce5319cc755bade68df7.tar.gz tcl-6d5195c7cd4b47c7572cce5319cc755bade68df7.tar.bz2 |
Mine all version information from headers. Sync tcl and tk and bring
extension versions closer together. Try and avoid using tclsh to do
substitutions as we may cross compile.
Added offsets for snack dlls to coffbase.txt
Diffstat (limited to 'win/nmakehlp.c')
-rw-r--r-- | win/nmakehlp.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/win/nmakehlp.c b/win/nmakehlp.c index 6a7fc96..00d2075 100644 --- a/win/nmakehlp.c +++ b/win/nmakehlp.c @@ -11,7 +11,7 @@ * this file, and for a DISCLAIMER OF ALL WARRANTIES. * * ---------------------------------------------------------------------------- - * RCS: @(#) $Id: nmakehlp.c,v 1.18 2007/09/12 14:23:08 patthoyts Exp $ + * RCS: @(#) $Id: nmakehlp.c,v 1.19 2007/10/12 14:09:46 patthoyts Exp $ * ---------------------------------------------------------------------------- */ @@ -299,7 +299,9 @@ CheckForCompilerFeature( return !(strstr(Out.buffer, "D4002") != NULL || strstr(Err.buffer, "D4002") != NULL || strstr(Out.buffer, "D9002") != NULL - || strstr(Err.buffer, "D9002") != NULL); + || strstr(Err.buffer, "D9002") != NULL + || strstr(Out.buffer, "D2021") != NULL + || strstr(Err.buffer, "D2021") != NULL); } int |