diff options
author | mdejong <mdejong> | 2003-01-17 22:10:43 (GMT) |
---|---|---|
committer | mdejong <mdejong> | 2003-01-17 22:10:43 (GMT) |
commit | 02e1cf97bd71fea4171adaed0ccfd7f19ffdbbaf (patch) | |
tree | 085cdf2c0f42298669aee6e92da1b6b48abf7bf2 /generic/tcl.h | |
parent | 9355455bbbdf3472b04c9f8f101a2ad35164baa7 (diff) | |
download | tcl-02e1cf97bd71fea4171adaed0ccfd7f19ffdbbaf.zip tcl-02e1cf97bd71fea4171adaed0ccfd7f19ffdbbaf.tar.gz tcl-02e1cf97bd71fea4171adaed0ccfd7f19ffdbbaf.tar.bz2 |
* generic/tcl.h: Revert earlier change that
defined TCL_WIDE_INT_TYPE as long long and
TCL_LL_MODIFIER as L when compiling with
mingw. This change ended up causing some
test case failures when compiling with mingw.
* generic/tclObj.c (UpdateStringOfWideInt):
Describe the warning generated by mingw and
why it needs to be ignored so that someone
is not tempted to "fix" this problem again
in the future.
Diffstat (limited to 'generic/tcl.h')
-rw-r--r-- | generic/tcl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tcl.h b/generic/tcl.h index 7a6fd2a..0c60153 100644 --- a/generic/tcl.h +++ b/generic/tcl.h @@ -13,7 +13,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tcl.h,v 1.150 2003/01/14 02:06:10 mdejong Exp $ + * RCS: @(#) $Id: tcl.h,v 1.151 2003/01/17 22:10:56 mdejong Exp $ */ #ifndef _TCL @@ -353,7 +353,7 @@ typedef long LONG; */ #if !defined(TCL_WIDE_INT_TYPE)&&!defined(TCL_WIDE_INT_IS_LONG) -# if defined(__CYGWIN__) || defined(__MINGW32__) +# if defined(__CYGWIN__) # define TCL_WIDE_INT_TYPE long long # define TCL_LL_MODIFIER "L" typedef struct stat Tcl_StatBuf; |