#ifndef CEPH_INTTYPES_H #define CEPH_INTTYPES_H #include "acconfig.h" #include #ifdef __linux__ #include #else #ifndef HAVE___U8 typedef uint8_t __u8; #endif #ifndef HAVE___S8 typedef int8_t __s8; #endif #ifndef HAVE___U16 typedef uint16_t __u16; #endif #ifndef HAVE___S16 typedef int16_t __s16; #endif #ifndef HAVE___U32 typedef uint32_t __u32; #endif #ifndef HAVE___S32 typedef int32_t __s32; #endif #ifndef HAVE___U64 typedef uint64_t __u64; #endif #ifndef HAVE___S64 typedef int64_t __s64; #endif #endif /* LINUX_TYPES_H */ #ifndef BOOST_MPL_CFG_NO_PREPROCESSED_HEADERS #define BOOST_MPL_CFG_NO_PREPROCESSED_HEADERS #endif #ifndef BOOST_MPL_LIMIT_VECTOR_SIZE #define BOOST_MPL_LIMIT_VECTOR_SIZE 30 // or whatever you need #endif #ifndef BOOST_MPL_LIMIT_MAP_SIZE #define BOOST_MPL_LIMIT_MAP_SIZE 30 // or whatever you need #endif #endif