From a0962d7ab21dc784772ec0ca589cbe91ed802c62 Mon Sep 17 00:00:00 2001 From: Joel Dice Date: Mon, 28 Feb 2011 16:50:17 -0700 Subject: [PATCH] look for __powerpc__ as well as __POWERPC__ in jni-util.h The former is used on GNU/Linux. --- classpath/jni-util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classpath/jni-util.h b/classpath/jni-util.h index 4270976131..d373aaf268 100644 --- a/classpath/jni-util.h +++ b/classpath/jni-util.h @@ -64,7 +64,7 @@ typedef unsigned __int64 uint64_t; # define ARCH_x86_32 # elif defined __x86_64__ # define ARCH_x86_64 -# elif defined __POWERPC__ +# elif (defined __POWERPC__) || (defined __powerpc__) # define ARCH_powerpc # elif defined __arm__ # define ARCH_arm