Fix build on ia64.
authorAdam Jackson <ajax@redhat.com>
Fri, 15 Feb 2008 19:56:32 +0000 (14:56 -0500)
committerAdam Jackson <ajax@redhat.com>
Fri, 15 Feb 2008 19:56:32 +0000 (14:56 -0500)
src/mesa/drivers/dri/intel/intel_tex.c

index f016b6b..c110df4 100644 (file)
@@ -100,7 +100,7 @@ do_memcpy(void *dest, const void *src, size_t n)
 }
 
 
-#if DO_DEBUG
+#if DO_DEBUG && !defined(__ia64__)
 
 #ifndef __x86_64__
 static unsigned
@@ -232,7 +232,7 @@ intelInitTextureFuncs(struct dd_function_table *functions)
    functions->UpdateTexturePalette = 0;
    functions->IsTextureResident = intelIsTextureResident;
 
-#if DO_DEBUG
+#if DO_DEBUG && !defined(__ia64__)
    if (INTEL_DEBUG & DEBUG_BUFMGR)
       functions->TextureMemCpy = timed_memcpy;
    else