From: Ian Romanick Date: Tue, 30 Mar 2004 00:23:25 +0000 (+0000) Subject: Add #ifdef protection around the file to prevent DRI build breakage. X-Git-Tag: 062012170305~24703 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d1c38f74722b03427a3fb015220b05455d3d7488;p=profile%2Fivi%2Fmesa.git Add #ifdef protection around the file to prevent DRI build breakage. --- diff --git a/src/mesa/tnl/t_vtx_x86_gcc.S b/src/mesa/tnl/t_vtx_x86_gcc.S index dcaca47..c06fef6 100644 --- a/src/mesa/tnl/t_vtx_x86_gcc.S +++ b/src/mesa/tnl/t_vtx_x86_gcc.S @@ -30,6 +30,7 @@ USE OR OTHER DEALINGS IN THE SOFTWARE. * Keith Whitwell */ +#if defined(USE_X86_ASM) && !defined(HAVE_NONSTANDARD_GLAPIENTRY) #define GLOBL( x ) \ .globl x; \ @@ -315,3 +316,4 @@ GLOBL( _x86_dispatch_vertexattribfv ) jmp *SUBST(0)(%eax) // 0x0 - tabfv[0][n] GLOBL( _x86_dispatch_vertexattribfv_end ) +#endif