int64_t may not be defined on HP-UX when using gcc

[SVN r10067]
This commit is contained in:
Jens Maurer
2001-05-08 18:14:14 +00:00
parent c54da75efb
commit e3702f3abc

View File

@ -30,6 +30,10 @@
# ifdef __hpux # ifdef __hpux
// HP-UX has a nice <stdint.h> in a non-standard location // HP-UX has a nice <stdint.h> in a non-standard location
# include <sys/_inttypes.h> # include <sys/_inttypes.h>
# ifdef __STDC_32_MODE__
// this is triggered with GCC, because it defines __cplusplus < 199707L
# define BOOST_NO_INT64_T
# endif
# else # else
# include <stdint.h> # include <stdint.h>
# endif # endif