From: Adam Jackson Date: Fri, 15 Feb 2008 19:56:32 +0000 (-0500) Subject: Fix build on ia64. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=49a34837564a28587517bfe8bc7679c4e5e04f85;p=mesa.git Fix build on ia64. --- 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