summaryrefslogtreecommitdiffstats
path: root/generic
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2012-08-05 11:59:27 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2012-08-05 11:59:27 (GMT)
commit44b11e5fbd2a8dbb7bfb22c7bb2c50192991e015 (patch)
tree59e33c6faf225f8c7aed8103109f01db65b19454 /generic
parentcc8fb137d0bd061b79e13861ca0b275eba8fa7c3 (diff)
downloadtk-44b11e5fbd2a8dbb7bfb22c7bb2c50192991e015.zip
tk-44b11e5fbd2a8dbb7bfb22c7bb2c50192991e015.tar.gz
tk-44b11e5fbd2a8dbb7bfb22c7bb2c50192991e015.tar.bz2
fix broken build on Visual Studio 9+10
Diffstat (limited to 'generic')
-rw-r--r--generic/tkMain.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/generic/tkMain.c b/generic/tkMain.c
index 9fd2f69..fddad3a 100644
--- a/generic/tkMain.c
+++ b/generic/tkMain.c
@@ -29,10 +29,15 @@
# endif
#endif
+#ifndef _WIN64
+/* See [Bug 2935503]: file mtime sets wrong time */
+# define _USE_32BIT_TIME_T
+#endif
+
+#include "tkInt.h"
#include <ctype.h>
#include <stdio.h>
#include <string.h>
-#include "tkInt.h"
#ifdef NO_STDLIB_H
# include "../compat/stdlib.h"
#else