summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorjsorg71 <jsorg71>2007-05-26 21:03:22 +0000
committerjsorg71 <jsorg71>2007-05-26 21:03:22 +0000
commit7661472b66a0cc1e5b63dd3d25501c3effef15a4 (patch)
tree92f316cadddad63a06cb58153119d7ca177ffd36 /common
parent63b3893dd584e3dab11df3ddaaace7648368c547 (diff)
downloadxrdp-proprietary-7661472b66a0cc1e5b63dd3d25501c3effef15a4.tar.gz
xrdp-proprietary-7661472b66a0cc1e5b63dd3d25501c3effef15a4.zip
another check for powerpc
Diffstat (limited to 'common')
-rw-r--r--common/arch.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/arch.h b/common/arch.h
index 13e22ad5..331b3523 100644
--- a/common/arch.h
+++ b/common/arch.h
@@ -25,7 +25,7 @@
#define ARCH_H
/* check endianess */
-#if defined(__sparc__) || defined(__PPC__)
+#if defined(__sparc__) || defined(__PPC__) || defined(__ppc__)
#define B_ENDIAN
#elif __BYTE_ORDER == __LITTLE_ENDIAN
#define L_ENDIAN
@@ -35,7 +35,7 @@
/* check if we need to align data */
#if defined(__sparc__) || defined(__alpha__) || defined(__hppa__) || \
defined(__AIX__) || defined(__PPC__) || defined(__mips__) || \
- defined(__ia64__)
+ defined(__ia64__) || defined(__ppc__)
#define NEED_ALIGN
#endif