From 6de4ed3b34262c50a1b86f4ae69efcd0bd8f6dea Mon Sep 17 00:00:00 2001 From: Kenneth Russel Date: Fri, 30 May 2008 06:31:38 +0000 Subject: 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 --- src/java/com/sun/gluegen/runtime/CPU.java | 1 + 1 file changed, 1 insertion(+) (limited to 'src/java/com') 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")) || -- cgit v1.2.3