summaryrefslogtreecommitdiff
path: root/src/gallium/include/pipe/p_config.h
diff options
context:
space:
mode:
authorJeremy Huddleston <jeremyhu@apple.com>2011-07-31 09:21:56 -0700
committerJeremy Huddleston <jeremyhu@apple.com>2011-07-31 09:24:35 -0700
commite737a99a6fbafe3ba4b5175eea25d1598dbeb9d8 (patch)
tree64c80e86e534c5a91a4e51059c20d37d2d530ef5 /src/gallium/include/pipe/p_config.h
parent5081d31a0ed753e7e23c5ed51f572d38aef66bfe (diff)
Fix PPC detection on darwin
Fixes regression introduced by 7004582c1894ede839c44e292b413fe4916d7e9e Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
Diffstat (limited to 'src/gallium/include/pipe/p_config.h')
-rw-r--r--src/gallium/include/pipe/p_config.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/include/pipe/p_config.h b/src/gallium/include/pipe/p_config.h
index eea3d79e64b..803b806592c 100644
--- a/src/gallium/include/pipe/p_config.h
+++ b/src/gallium/include/pipe/p_config.h
@@ -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