From 460063d8dc2cb465e22fd538239817a0cb0baec6 Mon Sep 17 00:00:00 2001 From: Adrian Knoth Date: Tue, 25 Aug 2015 17:32:55 +0200 Subject: [PATCH] Fix bus error on PPC and PowerPC Forwarded from --- common/jack/systemdeps.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/jack/systemdeps.h b/common/jack/systemdeps.h index ce0c2f74..1f62cb64 100644 --- a/common/jack/systemdeps.h +++ b/common/jack/systemdeps.h @@ -120,9 +120,9 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. #endif /* __APPLE__ || __linux__ || __sun__ || sun */ -#if defined(__arm__) +#if defined(__arm__) || defined(__ppc__) || defined(__powerpc__) #undef POST_PACKED_STRUCTURE #define POST_PACKED_STRUCTURE -#endif /* __arm__ */ +#endif /* __arm__ || __ppc__ || __powerpc__ */ #endif /* __jack_systemdeps_h__ */