DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=4985>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=4985 Typo in service/native/location.c line 77 ("define" should be "defined") Summary: Typo in service/native/location.c line 77 ("define" should be "defined") Product: Tomcat 4 Version: Nightly Build Platform: PC OS/Version: Windows NT/2K Status: NEW Severity: Normal Priority: Other Component: Unknown AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] In service/native/location.c at line 77, the keyword "define" should be changed to "defined". Here's what is there now: #elif define(OS_CYGWIN) "/cygdrive/c/WINNT/system32/java", #endif It should read: #elif defined(OS_CYGWIN) "/cygdrive/c/WINNT/system32/java", #endif With the typo, the location.c file does not compile under Cygwin. I'm using Cygwin 1.3.3 on Windows 2000 Service Pack 2. $ uname -a CYGWIN_NT-5.0 DEV 1.3.3(0.46/3/2) 2001-09-12 23:54 i686 unknown -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
