From e85c33074d52d9b69f1c521915615e8660f07d33 Mon Sep 17 00:00:00 2001
From: "jan.nijtmans" <nijtmans@users.sourceforge.net>
Date: Mon, 11 Nov 2019 16:32:42 +0000
Subject: On win32, include <inttypes.h> if available, just as on UNIX. Disable
 compiler warning C4244 on all Microsoft compiler versions, not just the
 latest ones.

---
 win/tclWinPort.h | 16 +++++++++++-----
 1 file changed, 11 insertions(+), 5 deletions(-)

diff --git a/win/tclWinPort.h b/win/tclWinPort.h
index c30d346..e9ae9dc 100644
--- a/win/tclWinPort.h
+++ b/win/tclWinPort.h
@@ -14,6 +14,7 @@
 #ifndef _TCLWINPORT
 #define _TCLWINPORT
 
+
 #if !defined(_WIN64) && !defined(__MINGW_USE_VC2005_COMPAT)
 /* See [Bug 3354324]: file mtime sets wrong time */
 #   define __MINGW_USE_VC2005_COMPAT
@@ -62,6 +63,9 @@ typedef DWORD_PTR * PDWORD_PTR;
 #include <process.h>
 #include <signal.h>
 #include <string.h>
+#if HAVE_INTTYPES_H
+#   include <inttypes.h>
+#endif
 #include <limits.h>
 
 #ifndef __GNUC__
@@ -379,12 +383,14 @@ typedef DWORD_PTR * PDWORD_PTR;
  * including the *printf family and others. Tell it to shut up.
  * (_MSC_VER is 1200 for VC6, 1300 or 1310 for vc7.net, 1400 for 8.0)
  */
-#if defined(_MSC_VER) && (_MSC_VER >= 1400)
+#if defined(_MSC_VER)
 #   pragma warning(disable:4244)
-#   pragma warning(disable:4267)
-#   pragma warning(disable:4311)
-#   pragma warning(disable:4312)
-#   pragma warning(disable:4996)
+#   if _MSC_VER >= 1400
+#	pragma warning(disable:4267)
+#	pragma warning(disable:4311)
+#	pragma warning(disable:4312)
+#	pragma warning(disable:4996)
+#   endif
 #endif
 
 
-- 
cgit v0.12