Aaron,
I just tried Blackdown's JDK 1.3.0 it and got it to work. I had to hack <php4>ext/java/config.m4 as follows:
change the line (around line 69):
test -d $i/classic && AC_ADD_LIBPATH($i/classic)
to:
test -d $i/hotspot && AC_ADD_LIBPATH($i/hotspot)
test -d $i/server && AC_ADD_LIBPATH($i/server)
test -d $i/classic && AC_ADD_LIBPATH($i/classic)
I'll see if I can get this released into the CVS. There are also some other changes necessary to that file to support other Ux platforms that have different shared object file suffixes (the java config file is hardcoded to use .so).
Of course, you'll have to run ./buildconf again to pick up this change prior to running ./configure.
Alex