The warnings on pointer to integer of different size are quite annoying (and I've been wrestling with the 'right' way to suppress those), but should be harmless. I'm assuming the compile is failing because of:
> winchester/bwd/java/nsjk2_v3/util/native2/javatcl/nstclcommand.c:278: > conflicting types for `Ns_Jk2JavaTclRegCmd' > [so] > /winchester/bwd/java/nsjk2_v3/util/native2/javatcl/nstclcommand.c:77: > previous declaration of `Ns_Jk2JavaTclRegCmd' My particular compiler (gcc-3.3.1) doesn't fail on that, but yours doesn't seem to like the match between Tcl_CmdProc as the function prototype and the definition in the code: (ClientData arg, Tcl_Interp *interp, argc, CONST char **argv) Try changing the last arg to CONST char *argv[] and see if it is happier (if so, I'll fix the code accordingly) -Elizabeth -- AOLserver - http://www.aolserver.com/ To Remove yourself from this list, simply send an email to <[EMAIL PROTECTED]> with the body of "SIGNOFF AOLSERVER" in the email message. You can leave the Subject: field of your email blank.
