Hi,
I am trying to compile the Java bindings for PPL on a 32 bit
Windows system with MinGW. I have the following problems:
1) The configure script returns an error (something like "cannot
include jni.h"). The problem is that in the configure script, row
22978, there are the following lines:
ac_machdep=`echo $build_os | sed 's,[-0-9].*,,' | sed 's,cygwin,win32,'`
JNIFLAGS="-I$ac_dir -I$ac_dir/$ac_machdep"
The sed command replaces cygwin with win32 in ac_machdep. I think the same translation should be applied for mingw, otherwise the "-I" parameter which is passed to the compiler points to an non existent directory.