You are viewing a plain text version of this content. The canonical link for it is here.
Posted to bugs@httpd.apache.org by bu...@apache.org on 2003/08/16 11:53:05 UTC

DO NOT REPLY [Bug 9126] - 68k-next-openstep v. 4.0

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=9126>.
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=9126

68k-next-openstep v. 4.0





------- Additional Comments From kb7sqi@nc.rr.com  2003-08-16 09:53 -------
The fix for this is already in the apache code.  Just add this part to ab.c:

#if defined(NEED_STRDUP)
char *strdup (const char *str)
{
    char *dup;

    if (!(dup = (char *) malloc(strlen(str) + 1)))
        return NULL;
    dup = strcpy(dup, str);

    return dup;
}
#endif

That'll will get httpd compiled, but you also need to add this to the NeXT
section of src/include/ap_config.h so httpd will startup and run:

#define HAVE_FLOCK_SERIALIZED_ACCEPT
#define HAVE_FCNTL_SERIALIZED_ACCEPT
#define USE_FLOCK_SERIALIZED_ACCEPT
#define SINGLE_LISTEN_UNSERIALIZED_ACCEPT

This is take directly from the Darwin section right below the NeXT.  I hope that
helps.

---------------------------------------------------------------------
To unsubscribe, e-mail: bugs-unsubscribe@httpd.apache.org
For additional commands, e-mail: bugs-help@httpd.apache.org