From 1daf54dea7f75ed39c8b7ae5bc65a1c5cf7dcd87 Mon Sep 17 00:00:00 2001 From: "jan.nijtmans" Date: Tue, 22 Nov 2011 07:59:58 +0000 Subject: [Bug 2935503]: Windows: file mtime sets wrong time --- ChangeLog | 5 +++++ generic/tclCmdAH.c | 5 +++++ generic/tclIOUtil.c | 5 +++++ win/tclWinFile.c | 1 + 4 files changed, 16 insertions(+) diff --git a/ChangeLog b/ChangeLog index b16e490..f7ba85f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2011-11-22 Jan Nijtmans + + * generic/tclCmdAH.c: [Bug 2935503] Windows: file mtime + * generic/tclIOUtil.c: sets wrong time + 2011-10-11 Jan Nijtmans * win/tclWinFile.c: [Bug 2935503] Incorrect mode field diff --git a/generic/tclCmdAH.c b/generic/tclCmdAH.c index c170b9b..02f398d 100644 --- a/generic/tclCmdAH.c +++ b/generic/tclCmdAH.c @@ -12,6 +12,11 @@ * of this file, and for a DISCLAIMER OF ALL WARRANTIES. */ +#ifndef _WIN64 +/* See [Bug 2935503]: file mtime sets wrong time */ +# define _USE_32BIT_TIME_T +#endif + #include #include "tclInt.h" #include "tclPort.h" diff --git a/generic/tclIOUtil.c b/generic/tclIOUtil.c index 94d3e22..b54b76b 100644 --- a/generic/tclIOUtil.c +++ b/generic/tclIOUtil.c @@ -18,6 +18,11 @@ * of this file, and for a DISCLAIMER OF ALL WARRANTIES. */ +#ifndef _WIN64 +/* See [Bug 2935503]: file mtime sets wrong time */ +# define _USE_32BIT_TIME_T +#endif + #include #include "tclInt.h" #include "tclPort.h" diff --git a/win/tclWinFile.c b/win/tclWinFile.c index c98c42c..5a3f193 100644 --- a/win/tclWinFile.c +++ b/win/tclWinFile.c @@ -13,6 +13,7 @@ */ #ifndef _WIN64 +/* See [Bug 2935503]: file mtime sets wrong time */ # define _USE_32BIT_TIME_T #endif #include -- cgit v0.12