diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2008-10-21 14:12:17 -0600 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2008-10-21 14:12:17 -0600 |
commit | 7004582c1894ede839c44e292b413fe4916d7e9e (patch) | |
tree | c587a880c0bb6323882cba706956a9576877c2c7 | |
parent | 3a2a2d5332b4912dd7c3d3d891920bdc419fbde0 (diff) |
gallium: implement tests for PPC/PPC64
-rw-r--r-- | src/gallium/include/pipe/p_config.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/gallium/include/pipe/p_config.h b/src/gallium/include/pipe/p_config.h index ef05547819..05cbd2fc4d 100644 --- a/src/gallium/include/pipe/p_config.h +++ b/src/gallium/include/pipe/p_config.h @@ -93,8 +93,11 @@ #endif #endif -#if 0 /* FIXME */ +#if defined(__PPC__) #define PIPE_ARCH_PPC +#if defined(__PPC64__) +#define PIPE_ARCH_PPC_64 +#endif #endif |