curl/system.h: check for __ppc__ as well

... regression since issue #1774 (commit 10b3df1059) since obviously
some older gcc doesn't know __powerpc__ while some newer doesn't know
__ppc__ ...

Fixes #1797
Closes #1798
Reported-by: Ryan Schmidt
This commit is contained in:
Daniel Stenberg 2017-08-17 14:39:39 +02:00
Родитель 74dac344b2
Коммит f2d060cf2b
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 5CC908FDB71E12C2
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -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))