summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorIan Romanick <idr@us.ibm.com>2004-03-30 00:23:25 +0000
committerIan Romanick <idr@us.ibm.com>2004-03-30 00:23:25 +0000
commitd1c38f74722b03427a3fb015220b05455d3d7488 (patch)
treef8dcb5c7378920f438f75c84704903b999151bbe /src
parent388c45596052823b9b3dbc132c5e801a3408acf8 (diff)
Add #ifdef protection around the file to prevent DRI build breakage.
Diffstat (limited to 'src')
-rw-r--r--src/mesa/tnl/t_vtx_x86_gcc.S2
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 dcaca47160..c06fef6c47 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 <keith@tungstengraphics.com>
*/
+#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