diff options
author | patthoyts <patthoyts@users.sourceforge.net> | 2006-09-26 00:05:02 (GMT) |
---|---|---|
committer | patthoyts <patthoyts@users.sourceforge.net> | 2006-09-26 00:05:02 (GMT) |
commit | d421cc6148b8573ae4284cb05be84eb936f44623 (patch) | |
tree | c0ac86f04e183856c29bf53794757d77eeea7dbc /generic/tcl.h | |
parent | 9ca74c27f3f89bb08b044b9bea127f0aa23fa9d5 (diff) | |
download | tcl-d421cc6148b8573ae4284cb05be84eb936f44623.zip tcl-d421cc6148b8573ae4284cb05be84eb936f44623.tar.gz tcl-d421cc6148b8573ae4284cb05be84eb936f44623.tar.bz2 |
More fixing which struct stat to refer to. Some casts from time_t to int required.
Tcl_Time structure members are longs. Support for varying compiler options
and build to platform-specific subdirs.
Diffstat (limited to 'generic/tcl.h')
-rw-r--r-- | generic/tcl.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tcl.h b/generic/tcl.h index c32c063..657ab9d 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.214 2006/08/18 07:45:31 das Exp $ + * RCS: @(#) $Id: tcl.h,v 1.215 2006/09/26 00:05:02 patthoyts Exp $ */ #ifndef _TCL @@ -394,10 +394,10 @@ 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; +typedef struct _stat64 Tcl_StatBuf; # endif /* _MSC_VER < 1400 */ # define TCL_LL_MODIFIER "I64" # define TCL_LL_MODIFIER_SIZE 3 |