diff options
author | Brad King <brad.king@kitware.com> | 2012-06-20 17:28:24 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2012-06-21 12:04:16 (GMT) |
commit | 64d0e15627e72e4d96297096dd5c63598827ed10 (patch) | |
tree | 510ec4681d6bd3694ffcfe90ab67f7753f0c2e99 | |
parent | 6dc053114b8fe213e7d1b41f99d1ec4ab436d29a (diff) | |
download | CMake-64d0e15627e72e4d96297096dd5c63598827ed10.zip CMake-64d0e15627e72e4d96297096dd5c63598827ed10.tar.gz CMake-64d0e15627e72e4d96297096dd5c63598827ed10.tar.bz2 |
KWIML: Teach INT.h that no HP platform implements SCN*8 formats
The "hh" class of scan formats is not implemented by the HP runtime.
-rw-r--r-- | INT.h.in | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -260,8 +260,6 @@ An includer may test the following macros after inclusion: # endif #elif defined(__SUNPRO_C) || defined(__SUNPRO_CC) # define @KWIML@_INT__NO_SCN8 -#elif defined(__HP_cc) || defined(__HP_aCC) -# define @KWIML@_INT__NO_SCN8 #elif defined(__BORLANDC__) # define @KWIML@_INT__NO_SCN8 # define @KWIML@_INT__NO_SCN64 @@ -269,6 +267,8 @@ An includer may test the following macros after inclusion: # define @KWIML@_INT__NO_SCN8 #elif defined(__WATCOMC__) # define @KWIML@_INT__NO_SCN8 +# elif defined(__hpux) /* HP runtime lacks support (any compiler) */ +# define @KWIML@_INT__NO_SCN8 #endif /* 8-bit d, i */ |