diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-09-05 06:56:49 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-09-05 06:56:49 (GMT) |
commit | 7c8cdba292435979d0f9c588b6da62c0a994414a (patch) | |
tree | 9f6753e506ccd1b656feeabea0b396fa8538be8d /win | |
parent | f39b7c73e64487788f86dfb9ae11585767f284fc (diff) | |
download | tcl-7c8cdba292435979d0f9c588b6da62c0a994414a.zip tcl-7c8cdba292435979d0f9c588b6da62c0a994414a.tar.gz tcl-7c8cdba292435979d0f9c588b6da62c0a994414a.tar.bz2 |
Fix [4718b41c56]: windows x86 & x64: file mtime overflows in modification date (2038?, windows 32-bit time_t?)
Diffstat (limited to 'win')
-rw-r--r-- | win/tclWinPort.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/tclWinPort.h b/win/tclWinPort.h index a88c6c8..fa699f0 100644 --- a/win/tclWinPort.h +++ b/win/tclWinPort.h @@ -19,7 +19,7 @@ #define __MINGW_USE_VC2005_COMPAT #endif -#if !defined(_WIN64) && !defined(__MINGW_USE_VC2005_COMPAT) && defined(BUILD_tcl) +#if !defined(_WIN64) && !defined(__MINGW_USE_VC2005_COMPAT) /* See [Bug 3354324]: file mtime sets wrong time */ # define _USE_32BIT_TIME_T #endif |