mirror of
https://github.com/X11Libre/xserver.git
synced 2026-03-24 05:54:08 +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
@@ -179,7 +179,9 @@ LOOKUP xfree86LookupTab[] = {
|
||||
SYMFUNC(xf86memchr)
|
||||
SYMFUNC(xf86memcmp)
|
||||
SYMFUNC(xf86memcpy)
|
||||
#if (defined(__powerpc__) && (defined(Lynx) || defined(linux))) || defined(__sparc__) || defined(__sparc) || defined(__ia64__) || defined (__amd64__)
|
||||
#if (defined(__powerpc__) && (defined(Lynx) || defined(linux))) || \
|
||||
defined(__sparc__) || defined(__sparc) || defined(__ia64__) || \
|
||||
defined (__amd64__) || defined(__x86_64__)
|
||||
/*
|
||||
* Some PPC, SPARC, and IA64 compilers generate calls to memcpy to handle
|
||||
* structure copies. This causes a problem both here and in shared
|
||||
|
||||
Reference in New Issue
Block a user