dreid 99/10/08 05:56:40
Modified: src/main listen.c Log: I think this was missed earlier, and as BeOS doesn't define SO_SNDBUF it was stopping the build. APR_SO_SNDBUF is defined and so all is well again. Revision Changes Path 1.12 +1 -1 apache-2.0/src/main/listen.c Index: listen.c =================================================================== RCS file: /home/cvs/apache-2.0/src/main/listen.c,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- listen.c 1999/10/07 20:47:54 1.11 +++ listen.c 1999/10/08 12:56:40 1.12 @@ -110,7 +110,7 @@ * If no size is specified, use the kernel default. */ if (send_buffer_size) { - stat = ap_setsocketopt(s, SO_SNDBUF, send_buffer_size); + stat = ap_setsocketopt(s, APR_SO_SNDBUF, send_buffer_size); if (stat != APR_SUCCESS && stat != APR_ENOTIMPL) { ap_log_error(APLOG_MARK, APLOG_WARNING, NULL, "make_sock: failed to set SendBufferSize for %s, "