From: Daniel Stenberg Date: Thu, 17 Aug 2017 12:39:39 +0000 (+0200) Subject: curl/system.h: check for __ppc__ as well X-Git-Tag: curl-7_56_0~223 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f2d060cf2b4f5d52ec8f356449085e8070fb5370;p=curl curl/system.h: check for __ppc__ as well ... regression since issue #1774 (commit 10b3df10596a) since obviously some older gcc doesn't know __powerpc__ while some newer doesn't know __ppc__ ... Fixes #1797 Closes #1798 Reported-by: Ryan Schmidt --- diff --git a/include/curl/system.h b/include/curl/system.h index 043b88bb6..df4d283dd 100644 --- a/include/curl/system.h +++ b/include/curl/system.h @@ -344,8 +344,8 @@ #elif defined(__GNUC__) # if !defined(__LP64__) && \ - (defined(__ILP32__) || \ - defined(__i386__) || defined(__powerpc__) || defined(__arm__) || \ + (defined(__ILP32__) || defined(__i386__) || \ + defined(__ppc__) || defined(__powerpc__) || defined(__arm__) || \ defined(__sparc__) || defined(__mips__) || defined(__sh__) || \ defined(__XTENSA__) || \ (defined(__SIZEOF_LONG__) && __SIZEOF_LONG__ == 4))