diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-11-28 12:53:38 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-11-28 12:53:38 (GMT) |
commit | 122bb72a66973fecc8939b5bb376d2b65334738b (patch) | |
tree | 39167800b1a305c79f29ee648f9f308b714c6c2e /win/tclWinPort.h | |
parent | 7c405f2e81b0eb2fbc2eae23dfaab798dcf44411 (diff) | |
download | tcl-122bb72a66973fecc8939b5bb376d2b65334738b.zip tcl-122bb72a66973fecc8939b5bb376d2b65334738b.tar.gz tcl-122bb72a66973fecc8939b5bb376d2b65334738b.tar.bz2 |
Enhance rules.vc like already done in other configure scripts: Determine HAVE_STDINT_H/HAVE_INTTYPES_H/HAVE_STDBOOL_H/MP_NO_STDINT the simple way, just by compiler version.
Diffstat (limited to 'win/tclWinPort.h')
-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 5e63c02..e2eae56 100644 --- a/win/tclWinPort.h +++ b/win/tclWinPort.h @@ -92,7 +92,7 @@ typedef DWORD_PTR * PDWORD_PTR; #include <malloc.h> #include <process.h> #include <signal.h> -#if HAVE_INTTYPES_H +#ifdef HAVE_INTTYPES_H # include <inttypes.h> #endif #include <limits.h> |