OGR
cpl_config_extras.h
1 
2 #ifndef INCLUDED_CPL_CONFIG_EXTRAS
3 #define INCLUDED_CPL_CONFIG_EXTRAS
4 
5 #if defined(__APPLE__)
6 
7 #ifdef __BIG_ENDIAN__
8  #define HOST_FILLORDER FILLORDER_MSB2LSB
9 #else
10  #define HOST_FILLORDER FILLORDER_LSB2MSB
11 #endif
12 
13 
14 #ifdef __LP64__
15  #define SIZEOF_UNSIGNED_LONG 8
16 #else
17  #define SIZEOF_UNSIGNED_LONG 4
18 #endif
19 
20 #ifdef __LP64__
21  #define SIZEOF_VOIDP 8
22 #else
23  #define SIZEOF_VOIDP 4
24 #endif
25 
26 #ifdef __BIG_ENDIAN__
27  #define WORDS_BIGENDIAN 1
28 #else
29  #undef WORDS_BIGENDIAN
30 #endif
31 
32 #undef VSI_STAT64
33 #undef VSI_STAT64_T
34 
35 #define VSI_STAT64 stat
36 #define VSI_STAT64_T stat
37 
38 #endif // APPLE
39 
40 #endif //INCLUDED_CPL_CONFIG_EXTRAS

Generated for GDAL by doxygen 1.8.11.