summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2013-06-11 08:12:09 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2013-06-11 08:12:09 (GMT)
commit70891d45411fa4695f4620b26dda06e94143967e (patch)
tree465341a4d90ea79b98a48ffbfbb87cf40715659b /win
parent94412474c1700b886d93941b7a424c8e2de9e893 (diff)
parenta9614d87b805cb106c4876c73858300e3c4359a3 (diff)
downloadtcl-70891d45411fa4695f4620b26dda06e94143967e.zip
tcl-70891d45411fa4695f4620b26dda06e94143967e.tar.gz
tcl-70891d45411fa4695f4620b26dda06e94143967e.tar.bz2
Improve compatibility detection for <time.h> and <sys/stat.h>:
- Move <time.h> before other includes on Windows, so we are sure the time_t definition being checked doesn't come from <sys/types.h>. - Padding at the end of Tcl_StatBuf doesn't influcence binary compatibility, so relax panic check accordingly.
Diffstat (limited to 'win')
-rw-r--r--win/tclWinPort.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/win/tclWinPort.h b/win/tclWinPort.h
index 48f7894..457c838 100644
--- a/win/tclWinPort.h
+++ b/win/tclWinPort.h
@@ -82,6 +82,7 @@ typedef DWORD_PTR * PDWORD_PTR;
*---------------------------------------------------------------------------
*/
+#include <time.h>
#include <wchar.h>
#include <io.h>
#include <errno.h>
@@ -114,8 +115,6 @@ typedef DWORD_PTR * PDWORD_PTR;
# endif /* __BORLANDC__ */
#endif /* __MWERKS__ */
-#include <time.h>
-
/*
* The following defines redefine the Windows Socket errors as
* BSD errors so Tcl_PosixError can do the right thing.