From: Brian Paul Date: Wed, 21 Sep 2011 17:37:49 +0000 (-0600) Subject: translate: check for PIPE_SUBSYSTEM_EMBEDDED X-Git-Tag: 062012170305~4320 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=37ef7c22ab3ab9ac976ad955197fe80fae5bf8b8;p=profile%2Fivi%2Fmesa.git translate: check for PIPE_SUBSYSTEM_EMBEDDED --- diff --git a/src/gallium/auxiliary/translate/translate_sse.c b/src/gallium/auxiliary/translate/translate_sse.c index 8cb3fd6..54414ef 100644 --- a/src/gallium/auxiliary/translate/translate_sse.c +++ b/src/gallium/auxiliary/translate/translate_sse.c @@ -35,7 +35,7 @@ #include "translate.h" -#if defined(PIPE_ARCH_X86) || (defined(PIPE_ARCH_X86_64) && !defined(__MINGW32__)) +#if (defined(PIPE_ARCH_X86) || (defined(PIPE_ARCH_X86_64) && !defined(__MINGW32__))) && !defined(PIPE_SUBSYSTEM_EMBEDDED) #include "rtasm/rtasm_cpu.h" #include "rtasm/rtasm_x86sse.h"