Could the following small change be applied to the configure.ac? With this change building Java support works. Without this change, ./configure detects Java if given Java home, but still shows "checking jni.h usability... no" and "checking jni.h presence... no"
Thanks, Marek Dolgos diff --git a/configure.ac b/configure.ac index f8002f7..9efea70 100755 --- a/configure.ac +++ b/configure.ac @@ -547,6 +547,7 @@ fi # system specific java includes case "$host_os" in + darwin*) _JNI_INC_SUBDIRS="darwin";; bsdi*) _JNI_INC_SUBDIRS="bsdos";; linux*) _JNI_INC_SUBDIRS="linux genunix";; osf*) _JNI_INC_SUBDIRS="alpha";; _______________________________________________ FastBit-users mailing list [email protected] https://hpcrdm.lbl.gov/cgi-bin/mailman/listinfo/fastbit-users
