1include(CheckIncludeFiles)
2include(CheckSymbolExists)
3include(CheckFunctionExists)
4include(CheckLibraryExists)
5include(CheckCXXSourceCompiles)
6include(TestBigEndian)
7
8check_function_exists(stat64 HAVE_STAT64)
9
10check_include_files(sys/vfs.h HAVE_SYS_VFS_H)
11check_include_files(sys/statvfs.h HAVE_SYS_STATVFS_H)
12check_include_files(byteswap.h HAVE_BYTESWAP_H)
13
14test_big_endian(WORDS_BIGENDIAN)
15