summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAdam Jackson <ajax@redhat.com>2008-02-15 14:56:32 -0500
committerAdam Jackson <ajax@redhat.com>2008-02-15 14:56:32 -0500
commit49a34837564a28587517bfe8bc7679c4e5e04f85 (patch)
tree692deee8fc2cdaabc6ee2ed23bd96a881cdc439d /src
parentcf0d91ae1d627381b632de63e5cb85494b277eb4 (diff)
Fix build on ia64.
Diffstat (limited to 'src')
-rw-r--r--src/mesa/drivers/dri/intel/intel_tex.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/intel/intel_tex.c b/src/mesa/drivers/dri/intel/intel_tex.c
index f016b6b4dc..c110df478f 100644
--- a/src/mesa/drivers/dri/intel/intel_tex.c
+++ b/src/mesa/drivers/dri/intel/intel_tex.c
@@ -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