aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/com/sun/gluegen
diff options
context:
space:
mode:
authorKenneth Russel <[email protected]>2008-05-30 06:31:38 +0000
committerKenneth Russel <[email protected]>2008-05-30 06:31:38 +0000
commit6de4ed3b34262c50a1b86f4ae69efcd0bd8f6dea (patch)
tree02f961d32f6f77aefce599c880db05861d2697e8 /src/java/com/sun/gluegen
parent7a874b54d5d38f3c81a75bbe3f6abd688cb92dfa (diff)
Added Windows (CE) / ARM to the list of known OS/CPU combinations
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/../svn-server-sync/gluegen/trunk@81 a78bb65f-1512-4460-ba86-f6dc96a7bf27
Diffstat (limited to 'src/java/com/sun/gluegen')
-rwxr-xr-xsrc/java/com/sun/gluegen/runtime/CPU.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/java/com/sun/gluegen/runtime/CPU.java b/src/java/com/sun/gluegen/runtime/CPU.java
index efb015d..e3a215f 100755
--- a/src/java/com/sun/gluegen/runtime/CPU.java
+++ b/src/java/com/sun/gluegen/runtime/CPU.java
@@ -54,6 +54,7 @@ public class CPU {
String os = System.getProperty("os.name").toLowerCase();
String cpu = System.getProperty("os.arch").toLowerCase();
if ((os.startsWith("windows") && cpu.equals("x86")) ||
+ (os.startsWith("windows") && cpu.equals("arm")) ||
(os.startsWith("linux") && cpu.equals("i386")) ||
(os.startsWith("linux") && cpu.equals("x86")) ||
(os.startsWith("mac os") && cpu.equals("ppc")) ||