From def691b009132463f8ec8efabd0d72768235dcf5 Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Wed, 21 Sep 2011 20:52:10 +0200 Subject: Unify JNI Library Loading into JNILibLoaderBase and use it for the gluegen-rt native lib as well - removed redundance - move proper JNLPAppletLauncher custom libloader code into JNILibLoaderBase - prepares for new JAR temp cache .. --- src/java/jogamp/common/os/MachineDescriptionRuntime.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/java/jogamp/common/os/MachineDescriptionRuntime.java') diff --git a/src/java/jogamp/common/os/MachineDescriptionRuntime.java b/src/java/jogamp/common/os/MachineDescriptionRuntime.java index eeb2c1b..c555724 100644 --- a/src/java/jogamp/common/os/MachineDescriptionRuntime.java +++ b/src/java/jogamp/common/os/MachineDescriptionRuntime.java @@ -32,7 +32,7 @@ import com.jogamp.common.os.MachineDescription; import com.jogamp.common.os.NativeLibrary; import com.jogamp.common.os.Platform; import com.jogamp.common.os.MachineDescription.StaticConfig; -import com.jogamp.gluegen.runtime.NativeLibLoader; +import com.jogamp.gluegen.runtime.GlueGenJNILibLoader; /** * Runtime MachineDescription @@ -85,7 +85,7 @@ public class MachineDescriptionRuntime { } private static MachineDescription getRuntimeImpl() { try { - NativeLibLoader.loadGlueGenRT(); + GlueGenJNILibLoader.loadGlueGenRT(); } catch (UnsatisfiedLinkError err) { return null; } -- cgit v1.2.3