Re: Question about JDK-8024281 Mac OS X: stop relying on Apple's JavaVM Frameworks

2015-02-23 Thread David DeHaven
>>> >>> Please excuse my ignorance, but >>> >>> Why? >>> And what's the difference? >> >> .dylib is the standard extension used by the dynamic loader on OSX, .jnilib >> was originally used by Apples JRE specifically for JNI libraries and (I >> believe) we’ve never really supported it except t

Re: Question about JDK-8024281 Mac OS X: stop relying on Apple's JavaVM Frameworks

2015-02-23 Thread David DeHaven
> In case anyone's interested, the answer to my original question is > > http://www.gnu.org/software/autoconf-archive/ax_jni_include_dir.html Ah, nice find! -DrD-

Re: Question about JDK-8024281 Mac OS X: stop relying on Apple's JavaVM Frameworks

2015-02-23 Thread David DeHaven
Follow-up question here: I'm trying to use autoconf to identify the location of the proper include directories and libraries for subsequent use of libtool to create a .libjni JNI dynamic library. >>> >>> You should be using .dylib for JNI libs these days. >> >> Please excuse