mirror of
https://github.com/X11Libre/xserver.git
synced 2026-04-14 17:18:09 +00:00
Check for __x86_64__ when we check for __amd64__
It seems Intel C Compiler neglects to define __amd64__, __amd64, or amd64, but *does* define __x86_64__.
This commit is contained in:
committed by
Julien Cristau
parent
b1f3f42840
commit
1fa4de80fc
@@ -393,7 +393,7 @@ SOFTWARE.
|
||||
|
||||
#endif /* ia64 */
|
||||
|
||||
#if defined(__amd64__) || defined(amd64) || defined(__amd64)
|
||||
#if defined(__amd64__) || defined(amd64) || defined(__amd64) || defined(__x86_64__)
|
||||
# define IMAGE_BYTE_ORDER LSBFirst
|
||||
|
||||
# if defined(XF86MONOVGA) || defined(XF86VGA16) || defined(XF86MONO)
|
||||
|
||||
Reference in New Issue
Block a user