diff options
author | Igor Sysoev <igor@sysoev.ru> | 2005-10-19 13:34:28 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2005-10-19 13:34:28 +0000 |
commit | e173ceabfff867065b7f76ba6741ef077b5179bc (patch) | |
tree | 752bcc88076b9d860cdb5dad6d239d45589c74d7 | |
parent | 2962ffedf645d382005194cfd2242139aca46037 (diff) | |
download | nginx-e173ceabfff867065b7f76ba6741ef077b5179bc.tar.gz nginx-e173ceabfff867065b7f76ba6741ef077b5179bc.zip |
nginx-0.3.4-RELEASE importrelease-0.3.4
*) Bugfix: nginx could not be built on Linux 2.4+ and MacOS X; the bug
had appeared in 0.3.3.
-rw-r--r-- | docs/xml/nginx/changes.xml | 16 | ||||
-rw-r--r-- | src/core/nginx.h | 2 | ||||
-rw-r--r-- | src/core/ngx_connection.c | 2 | ||||
-rw-r--r-- | src/event/modules/ngx_kqueue_module.c | 6 |
4 files changed, 22 insertions, 4 deletions
diff --git a/docs/xml/nginx/changes.xml b/docs/xml/nginx/changes.xml index fa1342cd5..9029f9eff 100644 --- a/docs/xml/nginx/changes.xml +++ b/docs/xml/nginx/changes.xml @@ -9,6 +9,22 @@ <title lang="en">nginx changelog</title> +<changes ver="0.3.4" date="19.09.2005"> + +<change type="bugfix"> +<para lang="ru"> +nginx не собирался на Linux 2.4+ и MacOS X; +ошибка появилась в 0.3.3. +</para> +<para lang="en"> +nginx could not be built on Linux 2.4+ and MacOS X; +bug appeared in 0.3.3. +</para> +</change> + +</changes> + + <changes ver="0.3.3" date="19.10.2005"> <change type="change"> diff --git a/src/core/nginx.h b/src/core/nginx.h index e482c424f..a52f6c8e4 100644 --- a/src/core/nginx.h +++ b/src/core/nginx.h @@ -8,7 +8,7 @@ #define _NGINX_H_INCLUDED_ -#define NGINX_VER "nginx/0.3.3" +#define NGINX_VER "nginx/0.3.4" #define NGINX_VAR "NGINX" #define NGX_OLDPID_EXT ".oldbin" diff --git a/src/core/ngx_connection.c b/src/core/ngx_connection.c index cac394400..94f816bff 100644 --- a/src/core/ngx_connection.c +++ b/src/core/ngx_connection.c @@ -198,7 +198,7 @@ ngx_set_inherited_sockets(ngx_cycle_t *cycle) continue; } - if (tlen < sizeof(int) || timeout == 0) { + if (olen < sizeof(int) || timeout == 0) { continue; } diff --git a/src/event/modules/ngx_kqueue_module.c b/src/event/modules/ngx_kqueue_module.c index 1c6ab55dc..d4916792c 100644 --- a/src/event/modules/ngx_kqueue_module.c +++ b/src/event/modules/ngx_kqueue_module.c @@ -114,9 +114,11 @@ ngx_module_t ngx_kqueue_module = { static ngx_int_t ngx_kqueue_init(ngx_cycle_t *cycle, ngx_msec_t timer) { - struct kevent kev; - struct timespec ts; ngx_kqueue_conf_t *kcf; + struct timespec ts; +#if (NGX_HAVE_TIMER_EVENT) + struct kevent kev; +#endif kcf = ngx_event_get_conf(cycle->conf_ctx, ngx_kqueue_module); |