Many windows compilers define __int64 as a 64-bit type, not just MSVC.
SVN-Revision: 1631
#
CHECK_TYPE_SIZE(int64_t INT64_T)
IF(NOT HAVE_INT64_T)
- IF(MSVC)
+ IF(WIN32)
SET(int64_t __int64)
- ENDIF(MSVC)
+ ENDIF(WIN32)
ENDIF(NOT HAVE_INT64_T)
#
CHECK_TYPE_SIZE(intmax_t INTMAX_T)
#
CHECK_TYPE_SIZE(uint64_t UINT64_T)
IF(NOT HAVE_UINT64_T)
- IF(MSVC)
+ IF(WIN32)
SET(uint64_t "unsigned __int64")
- ENDIF(MSVC)
+ ENDIF(WIN32)
ENDIF(NOT HAVE_UINT64_T)
#
CHECK_TYPE_SIZE(uintmax_t UINTMAX_T)