diff options
author | Adam Jackson <[email protected]> | 2008-02-15 14:56:32 -0500 |
---|---|---|
committer | Adam Jackson <[email protected]> | 2008-02-15 14:56:32 -0500 |
commit | 49a34837564a28587517bfe8bc7679c4e5e04f85 (patch) | |
tree | 692deee8fc2cdaabc6ee2ed23bd96a881cdc439d /src | |
parent | cf0d91ae1d627381b632de63e5cb85494b277eb4 (diff) |
Fix build on ia64.
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/drivers/dri/intel/intel_tex.c | 4 |
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 f016b6b4dc4..c110df478f2 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 |