diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2011-11-22 08:30:46 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2011-11-22 08:30:46 (GMT) |
commit | ff1b25db81a452f6230211bf47b563173517d4b8 (patch) | |
tree | 7c99edddbdf056e016bea0c4f2c08ffa130f0fea /win | |
parent | df6dfc34691563ae25dc7970f47e3b29c66c4dec (diff) | |
parent | fa1c6a3840969cbd088df6de2db23174db998e0b (diff) | |
download | tcl-ff1b25db81a452f6230211bf47b563173517d4b8.zip tcl-ff1b25db81a452f6230211bf47b563173517d4b8.tar.gz tcl-ff1b25db81a452f6230211bf47b563173517d4b8.tar.bz2 |
[Bug 2935503] Windows: file mtime sets wrong time (VS2005+ only)
Diffstat (limited to 'win')
-rw-r--r-- | win/tclWinFile.c | 3 | ||||
-rw-r--r-- | win/tclWinPort.h | 5 |
2 files changed, 5 insertions, 3 deletions
diff --git a/win/tclWinFile.c b/win/tclWinFile.c index 80bf799..08e5b42 100644 --- a/win/tclWinFile.c +++ b/win/tclWinFile.c @@ -12,9 +12,6 @@ * this file, and for a DISCLAIMER OF ALL WARRANTIES. */ -#ifndef _WIN64 -# define _USE_32BIT_TIME_T -#endif #include "tclWinInt.h" #include "tclFileSystem.h" #include <winioctl.h> diff --git a/win/tclWinPort.h b/win/tclWinPort.h index 9b19b23..6e9f2ad 100644 --- a/win/tclWinPort.h +++ b/win/tclWinPort.h @@ -14,6 +14,11 @@ #ifndef _TCLWINPORT #define _TCLWINPORT +#ifndef _WIN64 +/* See [Bug 2935503]: file mtime sets wrong time */ +# define _USE_32BIT_TIME_T +#endif + /* * We must specify the lower version we intend to support. * |