diff options
| author | patthoyts@users.sourceforge.net <patthoyts> | 2006-09-26 21:40:35 (GMT) |
|---|---|---|
| committer | patthoyts@users.sourceforge.net <patthoyts> | 2006-09-26 21:40:35 (GMT) |
| commit | c08cf3207c34b5a15c8257993405390d9a02406b (patch) | |
| tree | 31f99b53eebeaa5a255e51509f28407c43ff23f8 /generic/tcl.h | |
| parent | bc3f5f57975852f869cb61067886c6b676a6f794 (diff) | |
| download | tcl-c08cf3207c34b5a15c8257993405390d9a02406b.zip tcl-c08cf3207c34b5a15c8257993405390d9a02406b.tar.gz tcl-c08cf3207c34b5a15c8257993405390d9a02406b.tar.bz2 | |
* win/makefile.vc: Updated MSVC build to properly deal with
* win/nmakehlp.c: MSVC8 and AMD64 target. Backport from 8.5
* win/rules.vc:
* generic/tcl.h: Fixed stat definition for MSVC8 AMD64.
* win/tclWinSock.c: Casting type police.
* win/tclWinTime.c:
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 d3961eb..d7bdc90 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.153.2.27 2006/09/26 14:06:57 dgp Exp $ + * RCS: @(#) $Id: tcl.h,v 1.153.2.28 2006/09/26 21:40:36 patthoyts Exp $ */ #ifndef _TCL @@ -383,7 +383,7 @@ typedef struct stati64 Tcl_StatBuf; # define TCL_LL_MODIFIER "L" # define TCL_LL_MODIFIER_SIZE 1 # else /* __BORLANDC__ */ -# if _MSC_VER < 1400 +# if _MSC_VER < 1400 || !defined(_M_IX86) typedef struct _stati64 Tcl_StatBuf; # else typedef struct _stat64 Tcl_StatBuf; |
