diff options
author | patthoyts <patthoyts@users.sourceforge.net> | 2008-05-15 00:04:08 (GMT) |
---|---|---|
committer | patthoyts <patthoyts@users.sourceforge.net> | 2008-05-15 00:04:08 (GMT) |
commit | 5e16c3823829638c614e311586d3e0c9ca0fa32a (patch) | |
tree | b7e6b55d39a206577920ae8c031563a5ddc4e866 /win/nmakehlp.c | |
parent | 8c6b0215a7ccebe49708b68c096c93ae84113fb6 (diff) | |
download | tcl-5e16c3823829638c614e311586d3e0c9ca0fa32a.zip tcl-5e16c3823829638c614e311586d3e0c9ca0fa32a.tar.gz tcl-5e16c3823829638c614e311586d3e0c9ca0fa32a.tar.bz2 |
We should use the thread allocator for threaded builds. Added 'tclalloc' option to disable.
Diffstat (limited to 'win/nmakehlp.c')
-rw-r--r-- | win/nmakehlp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/win/nmakehlp.c b/win/nmakehlp.c index 21dc36b..65777aa 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.21 2007/12/14 02:27:11 patthoyts Exp $ + * RCS: @(#) $Id: nmakehlp.c,v 1.22 2008/05/15 00:04:10 patthoyts Exp $ * ---------------------------------------------------------------------------- */ @@ -23,10 +23,10 @@ #include <math.h> /* - * This library is required for x64 builds with _some_ versions + * This library is required for x64 builds with _some_ versions of MSVC */ #if defined(_M_IA64) || defined(_M_AMD64) -#if _MSC_FULL_VER > 140000000 && _MSC_FULL_VER <= 140040310 +#if _MSC_VER >= 1400 && _MSC_VER < 1500 #pragma comment(lib, "bufferoverflowU") #endif #endif |