OK, just got my hands on the 1.1b02 release, and what used to work is now throwing UnsatisfiedLinkError errors in my app:
java.lang.UnsatisfiedLinkError: no gluegen-rt in java.library.path
at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1682)
at java.lang.Runtime.loadLibrary0(Runtime.java:822)
at java.lang.System.loadLibrary(System.java:992)
at com.sun.gluegen.runtime.NativeLibLoader$1.run(NativeLibLoader.java:68)
at java.security.AccessController.doPrivileged(Native Method)
at com.sun.gluegen.runtime.NativeLibLoader.loadGlueGenRT(NativeLibLoader.java:66)
at com.sun.gluegen.runtime.NativeLibrary.ensureNativeLibLoaded(NativeLibrary.java:339)
at com.sun.gluegen.runtime.NativeLibrary.open(NativeLibrary.java:163)
at net.java.games.joal.impl.ALProcAddressLookup$DynamicLookup.dynamicLookupFunction(ALProcAddressLookup.java:60)
at com.sun.gluegen.runtime.ProcAddressHelper.resetProcAddressTable(ProcAddressHelper.java:64)
at net.java.games.joal.impl.ALProcAddressLookup.resetALCProcAddressTable(ALProcAddressLookup.java:100)
at net.java.games.joal.impl.ALCImpl.alcOpenDevice(ALCImpl.java:342)
…
I don’t know about that gluegen-rt in java.library.path thing. The only things on my native path are directories to the natives of JOAL and JOGL.
If you need more info, let me know.