diff options
author | Brad King <brad.king@kitware.com> | 2014-02-10 20:31:40 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-02-10 20:31:40 (GMT) |
commit | 28805109bcdea33933e889801a065fd1484b0547 (patch) | |
tree | 50a5f5c59e3fb0bba59b1507b55cb149b75872e2 /Source/cmStandardIncludes.h | |
parent | eaf703f16082fdd79983e32356aa20e64f94bd8b (diff) | |
download | CMake-28805109bcdea33933e889801a065fd1484b0547.zip CMake-28805109bcdea33933e889801a065fd1484b0547.tar.gz CMake-28805109bcdea33933e889801a065fd1484b0547.tar.bz2 |
cmStandardIncludes: Include cmIML/INT.h for portable integer types
Also teach the bootstrap script to configure the needed headers.
Diffstat (limited to 'Source/cmStandardIncludes.h')
-rw-r--r-- | Source/cmStandardIncludes.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmStandardIncludes.h b/Source/cmStandardIncludes.h index ebfa8f9..b4ae657 100644 --- a/Source/cmStandardIncludes.h +++ b/Source/cmStandardIncludes.h @@ -40,6 +40,9 @@ #pragma warning ( disable : 1572 ) /* floating-point equality test */ #endif +// Provide fixed-size integer types. +#include <cmIML/INT.h> + #include <stdarg.h> // Work-around for SGI MIPSpro 7.4.2m header bug // This is a hack to prevent warnings about these functions being |