reliability fix:

"Recently it was discovered that nginx workers exit abnormally if they
receive Expect header on all systems except FreeBSD, Linux, and
Solaris."

from upstream via maintainer Darrin Chandler
This commit is contained in:
steven 2008-12-26 17:30:23 +00:00
parent aa24b8378b
commit bd273aac20
2 changed files with 14 additions and 1 deletions

View File

@ -1,8 +1,9 @@
# $OpenBSD: Makefile,v 1.10 2008/12/07 20:08:55 merdely Exp $
# $OpenBSD: Makefile,v 1.11 2008/12/26 17:30:23 steven Exp $
COMMENT= robust and small HTTP server and mail proxy server
DISTNAME= nginx-0.6.34
PKGNAME= ${DISTNAME}p0
CATEGORIES= www
HOMEPAGE= http://nginx.net/

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-src_os_unix_ngx_posix_init_c,v 1.1 2008/12/26 17:30:23 steven Exp $
--- src/os/unix/ngx_posix_init.c.orig Mon Dec 3 09:46:46 2007
+++ src/os/unix/ngx_posix_init.c Thu Dec 25 09:57:05 2008
@@ -22,7 +22,7 @@ ngx_os_io_t ngx_os_io = {
ngx_unix_recv,
ngx_readv_chain,
ngx_udp_unix_recv,
- NULL,
+ ngx_unix_send,
ngx_writev_chain,
0
};