From: Jeremy Huddleston Date: Sun, 31 Jul 2011 16:21:56 +0000 (-0700) Subject: Fix PPC detection on darwin X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e737a99a6fbafe3ba4b5175eea25d1598dbeb9d8;p=mesa.git Fix PPC detection on darwin Fixes regression introduced by 7004582c1894ede839c44e292b413fe4916d7e9e Signed-off-by: Jeremy Huddleston --- 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