From 9ed44360585ce8bd1008d8609ffdae55b8008bec Mon Sep 17 00:00:00 2001 From: Kent Mein Date: Sat, 6 Mar 2004 19:32:33 +0000 Subject: Updated the Sun ifdef's basically I standardized them so they were all the same and make sure all platforms see them. Kent --- intern/guardedalloc/intern/mallocn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'intern') diff --git a/intern/guardedalloc/intern/mallocn.c b/intern/guardedalloc/intern/mallocn.c index 6d74c478f40..83bd1f59161 100644 --- a/intern/guardedalloc/intern/mallocn.c +++ b/intern/guardedalloc/intern/mallocn.c @@ -87,7 +87,7 @@ static char *check_memlist(MemHead *memh); /* locally used defines */ /* --------------------------------------------------------------------- */ -#if defined( __sgi) || defined (__sun__) || defined (__PPC__) || defined (__APPLE__) +#if defined( __sgi) || defined (__sun) || defined (__sun__) || defined (__sparc) || defined (__sparc__) || defined (__PPC__) || defined (__APPLE__) #define MAKE_ID(a,b,c,d) ( (int)(a)<<24 | (int)(b)<<16 | (c)<<8 | (d) ) #else #define MAKE_ID(a,b,c,d) ( (int)(d)<<24 | (int)(c)<<16 | (b)<<8 | (a) ) -- cgit v1.2.3