GDAL
cpl_config_extras.h
1 /* $Id: cpl_config_extras.h 55f4cce7557b301901f754e28cd6193f2f02b522 2016-12-23 14:54:07Z Kurt Schwehr $ */
2 
3 #ifndef INCLUDED_CPL_CONFIG_EXTRAS
4 #define INCLUDED_CPL_CONFIG_EXTRAS
5 
6 #if defined(__APPLE__)
7 
8 #ifdef __BIG_ENDIAN__
9  #define HOST_FILLORDER FILLORDER_MSB2LSB
10 #else
11  #define HOST_FILLORDER FILLORDER_LSB2MSB
12 #endif
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.13.