From: Mike Hommey Date: Wed, 25 Feb 2015 01:41:37 +0000 (+0900) Subject: Make powerpc not use static page sizes in mozjemalloc X-Git-Tag: archive/raspbian/60.6.1esr-1+rpi1^2~23 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=cc1bdc6f17b61071ac46aef6b23af837a6e76f3c;p=firefox-esr.git Make powerpc not use static page sizes in mozjemalloc Closes: #763900 Gbp-Pq: Topic porting Gbp-Pq: Name Make-powerpc-not-use-static-page-sizes-in-mozjemallo.patch --- diff --git a/memory/build/mozjemalloc.cpp b/memory/build/mozjemalloc.cpp index db9f6a36130..854b4f13518 100644 --- a/memory/build/mozjemalloc.cpp +++ b/memory/build/mozjemalloc.cpp @@ -180,7 +180,7 @@ using namespace mozilla; // Debug builds are opted out too, for test coverage. #ifndef MOZ_DEBUG #if !defined(__ia64__) && !defined(__sparc__) && !defined(__mips__) && \ - !defined(__aarch64__) + !defined(__aarch64__) && !defined(__powerpc__) #define MALLOC_STATIC_PAGESIZE 1 #endif #endif