From 0795fe92fe5d2bd2c3255e47850a11fd57e98d57 Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Thu, 6 Nov 2025 20:02:41 +0500 Subject: [PATCH] public: build: allow older __ppc__ macro defined by GCC 4.0 (even though I probably won't support GCC 4.0) --- public/build.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/build.h b/public/build.h index d7bb6a8d..49253b30 100644 --- a/public/build.h +++ b/public/build.h @@ -206,7 +206,7 @@ Then you can use another oneliner to query all variables: #elif defined __e2k__ #define XASH_64BIT 1 #define XASH_E2K 1 -#elif defined __PPC__ || defined __powerpc__ +#elif defined __PPC__ || defined __powerpc__ || defined __ppc__ #define XASH_PPC 1 #if defined __PPC64__ || defined __powerpc64__ #define XASH_64BIT 1