summaryrefslogtreecommitdiffstats
path: root/generic/tcl.h
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2012-01-19 21:22:56 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2012-01-19 21:22:56 (GMT)
commit11fcad9b1df2c2cf7d5ada8feb565c97b9777fef (patch)
treea2b88d5c4f0c32a4d74c057bad4b99f513585acf /generic/tcl.h
parent868168e18953894ec72ea898ff4d2f518283184e (diff)
downloadtcl-11fcad9b1df2c2cf7d5ada8feb565c97b9777fef.zip
tcl-11fcad9b1df2c2cf7d5ada8feb565c97b9777fef.tar.gz
tcl-11fcad9b1df2c2cf7d5ada8feb565c97b9777fef.tar.bz2
[Bug-3474726] minGW Tcl_StatBuf not defined correctly in tcl.h
Diffstat (limited to 'generic/tcl.h')
-rw-r--r--generic/tcl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tcl.h b/generic/tcl.h
index ec64cac..b9355da 100644
--- a/generic/tcl.h
+++ b/generic/tcl.h
@@ -381,7 +381,7 @@ typedef struct stati64 Tcl_StatBuf;
# else /* __BORLANDC__ */
# if defined(_WIN64)
typedef struct __stat64 Tcl_StatBuf;
-# elif (defined(_MSC_VER) && (_MSC_VER < 1400))
+# elif (defined(_MSC_VER) && (_MSC_VER < 1400)) || defined(_USE_32BIT_TIME_T)
typedef struct _stati64 Tcl_StatBuf;
# else
typedef struct _stat32i64 Tcl_StatBuf;