diff options
author | patthoyts <patthoyts@users.sourceforge.net> | 2009-04-29 15:47:05 (GMT) |
---|---|---|
committer | patthoyts <patthoyts@users.sourceforge.net> | 2009-04-29 15:47:05 (GMT) |
commit | 24b0de09363c5d2c55f8f3cee608482a26d206fb (patch) | |
tree | 6457e97e33a5b5a08fe9efbc93915cc8e2193f34 /generic/tcl.h | |
parent | c8dbde43253b501eae4a908359215b0a2c51f036 (diff) | |
download | tcl-24b0de09363c5d2c55f8f3cee608482a26d206fb.zip tcl-24b0de09363c5d2c55f8f3cee608482a26d206fb.tar.gz tcl-24b0de09363c5d2c55f8f3cee608482a26d206fb.tar.bz2 |
Revert last commit which fails to build with msvc2005 and msvc6
Diffstat (limited to 'generic/tcl.h')
-rw-r--r-- | generic/tcl.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/generic/tcl.h b/generic/tcl.h index a86e2f9..ad3021e 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.254.2.10 2009/04/29 14:59:34 dkf Exp $ + * RCS: @(#) $Id: tcl.h,v 1.254.2.11 2009/04/29 15:47:05 patthoyts Exp $ */ #ifndef _TCL @@ -367,12 +367,12 @@ typedef struct stat Tcl_StatBuf; # ifdef __BORLANDC__ typedef struct stati64 Tcl_StatBuf; # define TCL_LL_MODIFIER "L" -# else /* !__BORLANDC__ */ -# if _MSC_VER < 1400 && defined(_WIN64) +# else /* __BORLANDC__ */ +# if _MSC_VER < 1400 || !defined(_M_IX86) typedef struct _stati64 Tcl_StatBuf; # else typedef struct _stat64 Tcl_StatBuf; -# endif /* _MSC_VER < 1400 && _WIN64 */ +# endif /* _MSC_VER < 1400 */ # define TCL_LL_MODIFIER "I64" # endif /* __BORLANDC__ */ # else /* __WIN32__ */ |