diff options
Diffstat (limited to 'src/post/goom/goom_config.h')
-rw-r--r-- | src/post/goom/goom_config.h | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/src/post/goom/goom_config.h b/src/post/goom/goom_config.h index 948bf8eb0..5d2a1a91f 100644 --- a/src/post/goom/goom_config.h +++ b/src/post/goom/goom_config.h @@ -1,3 +1,7 @@ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include <inttypes.h> /* #define VERSION "1.9dev5" */ @@ -25,8 +29,14 @@ /* #define STANDALONE */ /* for pc users with mmx processors. */ -/* #define MMX */ -/* #define POWERPC */ +#ifdef ARCH_X86 +#define MMX +#endif + +#ifdef ARCH_PPC +#define POWERPC +#endif + /* #define VERBOSE */ #ifndef guint32 |