Support .dylib as a native library suffix.
Prior to Mac OS X 10.5, the only extension for Java native libraries was jnilib.
The Java VM will first try to load a native library named lib<library>.jnilib. If that fails, it will look for a native library named lib<library>.dylib. If that fails, an UnsatisfiedLinkException is thrown.
Last updated: 2007-10-31