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=25530>. 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=25530 perchild does not compile on Solaris8 Summary: perchild does not compile on Solaris8 Product: Apache httpd-2.0 Version: 2.0.48 Platform: Sun OS/Version: Solaris Status: NEW Severity: Blocker Priority: Other Component: perchild AssignedTo: [email protected] ReportedBy: [EMAIL PROTECTED] MPM perchild does not compile on Solaris8 with gcc. The similar problem was fixed in php in old ages: http://www.phpbuilder.com/lists/php-developer-list/2001011/1299.php Then after applying the below patch, mpm perchild compiled properly: --- perchild.c.orig Fri Sep 5 21:00:52 2003 +++ perchild.c Mon Dec 15 12:22:50 2003 @@ -56,6 +56,13 @@ * University of Illinois, Urbana-Champaign. */ +#ifdef SOLARIS2 +#if (SOLARIS2 == 8) +#define _XPG4_2 +#define __EXTENSIONS__ +#endif +#endif + #include "apr_hash.h" #include "apr_strings.h" #include "apr_pools.h" --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
