The macosx cannot load one of the native libraries. To illustrate this issue, I have written the following test program:
public static void main(String[] args) {
System.load("/Users/lyon/attachments/foo/jpct/lib/lwjgl-2.9.1/native/macosx/liblwjgl.jnilib");
}
Exception in thread "main" java.lang.NoSuchMethodError: getPointer
at java.lang.ClassLoader$NativeLibrary.load(Native Method)
at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1937)
at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1822)
at java.lang.Runtime.load0(Runtime.java:809)
at java.lang.System.load(System.java:1086)
at nativeLibs.NativeLibDetect.main(NativeLibDetect.java:87)
Are you depending on a dylib to be somewhere it isn't?
Is there a JNA approach to the problem?
Thanks!
- Doug