diff options
author | Kenneth Russel <[email protected]> | 2008-05-30 06:31:38 +0000 |
---|---|---|
committer | Kenneth Russel <[email protected]> | 2008-05-30 06:31:38 +0000 |
commit | 6de4ed3b34262c50a1b86f4ae69efcd0bd8f6dea (patch) | |
tree | 02f961d32f6f77aefce599c880db05861d2697e8 /src/java/com/sun/gluegen | |
parent | 7a874b54d5d38f3c81a75bbe3f6abd688cb92dfa (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-x | src/java/com/sun/gluegen/runtime/CPU.java | 1 |
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")) || |