xref: /OK3568_Linux_fs/external/xserver/include/dix-config-apple-verbatim.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun /* Do not include this file directly.  It is included at the end of <dix-config.h> */
2*4882a593Smuzhiyun 
3*4882a593Smuzhiyun /* Correctly set _XSERVER64 for OSX fat binaries */
4*4882a593Smuzhiyun #if defined(__LP64__) && !defined(_XSERVER64)
5*4882a593Smuzhiyun #define _XSERVER64 1
6*4882a593Smuzhiyun #elif !defined(__LP64__) && defined(_XSERVER64)
7*4882a593Smuzhiyun #undef _XSERVER64
8*4882a593Smuzhiyun #endif
9