Japhar

./configure --with-mozilla=/tmp/night/mozilla --enable-nspr --enable-oji --with-sun-jdk=/usr/java/jdk1.3 --with-nspr=/usr/local/nspr

system.c: In function `Java_java_lang_System_initProperties':
system.c:424: structure has no member named `tm_zone'

HAVE_TM_ZONEとconfigureされてくのだが、実際は異なる
/* value = (*env)->NewStringUTF(env, tminfo->tm_zone); */
value = (*env)->NewStringUTF(env, tzname[tminfo->tm_isdst]);

unixfilesystem.c: In function `Java_java_io_UnixFileSystem_setReadOnly':
unixfilesystem.c:403: `S_IWRITE' undeclared (first use in this function)
unixfilesystem.c:403: (Each undeclared identifier is reported only once
unixfilesystem.c:403: for each function it appears in.)
/* new_mode &= ~(S_IWRITE | S_IWGRP | S_IWOTH); */
new_mode &= ~(S_IWUSR | S_IWGRP | S_IWOTH);

In file included from japharJVMPlugin.cpp:28:
japharJVMPlugin.h:44: nsIEventHandler.h: No such file or directory

$MOZILLA_SRC/dist/include/nsIEventHandler.h deadリンクで存在

japharJVMPlugin.h内の箇所をコメントアウト
japharJVMPluginInstance.cpp:40: nsIEventHandler.h: No such file or directory

きょうのところはこの先のエラーで断念