cpl_config_extras.h
00001
00002 #if defined(__APPLE__)
00003
00004 #ifdef __BIG_ENDIAN__
00005 #define HOST_FILLORDER FILLORDER_MSB2LSB
00006 #else
00007 #define HOST_FILLORDER FILLORDER_LSB2MSB
00008 #endif
00009
00010
00011 #ifdef __LP64__
00012 #define SIZEOF_UNSIGNED_LONG 8
00013 #else
00014 #define SIZEOF_UNSIGNED_LONG 4
00015 #endif
00016
00017 #ifdef __LP64__
00018 #define SIZEOF_VOIDP 8
00019 #else
00020 #define SIZEOF_VOIDP 4
00021 #endif
00022
00023 #ifdef __BIG_ENDIAN__
00024 #define WORDS_BIGENDIAN 1
00025 #else
00026 #undef WORDS_BIGENDIAN
00027 #endif
00028
00029 #define VSI_STAT64 stat
00030 #define VSI_STAT64_T stat
00031
00032 #endif