diff options
author | Ian Romanick <[email protected]> | 2004-03-30 00:23:25 +0000 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2004-03-30 00:23:25 +0000 |
commit | d1c38f74722b03427a3fb015220b05455d3d7488 (patch) | |
tree | f8dcb5c7378920f438f75c84704903b999151bbe /src/mesa/tnl | |
parent | 388c45596052823b9b3dbc132c5e801a3408acf8 (diff) |
Add #ifdef protection around the file to prevent DRI build breakage.
Diffstat (limited to 'src/mesa/tnl')
-rw-r--r-- | src/mesa/tnl/t_vtx_x86_gcc.S | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/tnl/t_vtx_x86_gcc.S b/src/mesa/tnl/t_vtx_x86_gcc.S index dcaca471608..c06fef6c47d 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 <[email protected]> */ +#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 |