mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-23 02:08:10 +02:00
Fix PPC detection on darwin
Fixes regression introduced by7004582c18Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> (cherry picked from commite737a99a6f)
This commit is contained in:
parent
fffd20cdc1
commit
0d2c369535
1 changed files with 2 additions and 2 deletions
|
|
@ -99,9 +99,9 @@
|
|||
#endif
|
||||
#endif
|
||||
|
||||
#if defined(__PPC__)
|
||||
#if defined(__ppc__) || defined(__ppc64__) || defined(__PPC__)
|
||||
#define PIPE_ARCH_PPC
|
||||
#if defined(__PPC64__)
|
||||
#if defined(__ppc64__) || defined(__PPC64__)
|
||||
#define PIPE_ARCH_PPC_64
|
||||
#endif
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue