Skip to content
Snippets Groups Projects
Commit e737a99a authored by Jeremy Huddleston Sequoia's avatar Jeremy Huddleston Sequoia
Browse files

Fix PPC detection on darwin


Fixes regression introduced by 7004582c

Signed-off-by: default avatarJeremy Huddleston <jeremyhu@apple.com>
parent 5081d31a
No related branches found
No related tags found
Loading
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment