Fix PPC detection on darwin

Fixes regression introduced by 7004582c18

Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
This commit is contained in:
Jeremy Huddleston
2011-07-31 09:21:56 -07:00
parent 5081d31a0e
commit e737a99a6f

View File

@@ -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