Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Gartner <stefang@aon.at>2008-03-23 15:59:26 +0300
committerStefan Gartner <stefang@aon.at>2008-03-23 15:59:26 +0300
commit4a6d75af27693cdeee84b2a4862d68b287c0b812 (patch)
treecf702eec1c68e1c69c14770f671f926c0a70b528 /source/blender/imbuf/intern/imbuf_patch.h
parentfa2d6c195e890a7e2f95f3939ef85c7d74657dc1 (diff)
added support for linux on pa-risc
Diffstat (limited to 'source/blender/imbuf/intern/imbuf_patch.h')
-rw-r--r--source/blender/imbuf/intern/imbuf_patch.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/imbuf/intern/imbuf_patch.h b/source/blender/imbuf/intern/imbuf_patch.h
index f2d490d235b..145d48bf547 100644
--- a/source/blender/imbuf/intern/imbuf_patch.h
+++ b/source/blender/imbuf/intern/imbuf_patch.h
@@ -53,7 +53,7 @@ typedef unsigned char uchar;
/* Endianness: flip the byte order. It's strange that this is needed..
* After all, there is an internal endian.{c,h}... */
-#if defined(__sgi) || defined (__sparc) || defined(__sparc__) || defined (__PPC__) || defined (__ppc__) || defined (__BIG_ENDIAN__)
+#if defined(__sgi) || defined (__sparc) || defined(__sparc__) || defined (__PPC__) || defined (__ppc__) || defined (__hppa__) || defined (__BIG_ENDIAN__)
#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) )