changeset 368:6aeb6e11b9e7 NGINX_0_6_28

nginx 0.6.28 *) Bugfix: the rtsig method could be not built; bug appeared in 0.6.27.
author Igor Sysoev <http://sysoev.ru>
date Thu, 13 Mar 2008 00:00:00 +0300
parents 579b892330d8
children 5906b8639a07
files CHANGES CHANGES.ru auto/modules auto/sources src/core/nginx.h src/http/modules/perl/nginx.pm src/os/unix/ngx_linux_config.h
diffstat 7 files changed, 19 insertions(+), 9 deletions(-) [+]
line wrap: on
line diff
--- a/CHANGES
+++ b/CHANGES
@@ -1,4 +1,9 @@
 
+Changes with nginx 0.6.28                                        13 Mar 2008
+
+    *) Bugfix: the rtsig method could be not built; bug appeared in 0.6.27.
+
+
 Changes with nginx 0.6.27                                        12 Mar 2008
 
     *) Change: now by default the rtsig method is not built on 
--- a/CHANGES.ru
+++ b/CHANGES.ru
@@ -1,4 +1,9 @@
 
+Изменения в nginx 0.6.28                                          13.03.2008
+
+    *) Исправление: метод rtsig не собирался; ошибка появилась в 0.6.27.
+
+
 Изменения в nginx 0.6.27                                          12.03.2008
 
     *) Изменение: теперь на Linux 2.6.18+ по умолчанию не собирается метод 
--- a/auto/modules
+++ b/auto/modules
@@ -113,7 +113,7 @@ fi
 
 if [ $HTTP_POSTPONE = YES ]; then
     HTTP_FILTER_MODULES="$HTTP_FILTER_MODULES $HTTP_POSTPONE_FILTER_MODULE"
-    HTTP_SRCS="$HTTP_SRCS $HTPP_POSTPONE_FILTER_SRCS"
+    HTTP_SRCS="$HTTP_SRCS $HTTP_POSTPONE_FILTER_SRCS"
 fi
 
 if [ $HTTP_CHARSET = YES ]; then
@@ -278,8 +278,8 @@ fi
 
 # STUB
 #USE_MD5=YES
-#HTTP_SRCS="$HTTP_SRCS $HTPP_CACHE_SRCS"
-#HTTP_SRCS="$HTTP_SRCS $HTPP_FILE_CACHE_SRCS"
+#HTTP_SRCS="$HTTP_SRCS $HTTP_CACHE_SRCS"
+#HTTP_SRCS="$HTTP_SRCS $HTTP_FILE_CACHE_SRCS"
 
 if [ $HTTP_STUB_STATUS = YES ]; then
     have=NGX_STAT_STUB . auto/have
--- a/auto/sources
+++ b/auto/sources
@@ -307,10 +307,10 @@ HTTP_SRCS="src/http/ngx_http.c \
 # STUB
 HTTP_SRCS="$HTTP_SRCS src/http/ngx_http_busy_lock.c"
 
-HTPP_POSTPONE_FILTER_SRCS=src/http/ngx_http_postpone_filter_module.c
+HTTP_POSTPONE_FILTER_SRCS=src/http/ngx_http_postpone_filter_module.c
 
-HTPP_CACHE_SRCS=src/http/ngx_http_cache.c
-HTPP_FILE_CACHE_SRCS=src/http/ngx_http_file_cache.c
+HTTP_CACHE_SRCS=src/http/ngx_http_cache.c
+HTTP_FILE_CACHE_SRCS=src/http/ngx_http_file_cache.c
 
 
 HTTP_CHARSET_FILTER_MODULE=ngx_http_charset_filter_module
--- a/src/core/nginx.h
+++ b/src/core/nginx.h
@@ -8,7 +8,7 @@
 #define _NGINX_H_INCLUDED_
 
 
-#define NGINX_VERSION      "0.6.27"
+#define NGINX_VERSION      "0.6.28"
 #define NGINX_VER          "nginx/" NGINX_VERSION
 
 #define NGINX_VAR          "NGINX"
--- a/src/http/modules/perl/nginx.pm
+++ b/src/http/modules/perl/nginx.pm
@@ -47,7 +47,7 @@ our @EXPORT = qw(
     HTTP_INSUFFICIENT_STORAGE
 );
 
-our $VERSION = '0.6.27';
+our $VERSION = '0.6.28';
 
 require XSLoader;
 XSLoader::load('nginx', $VERSION);
--- a/src/os/unix/ngx_linux_config.h
+++ b/src/os/unix/ngx_linux_config.h
@@ -69,7 +69,7 @@ extern ssize_t sendfile(int s, int fd, i
 #endif
 
 
-#if (NGX_HAVE_POLL)
+#if (NGX_HAVE_POLL || NGX_HAVE_RTSIG)
 #include <poll.h>
 #endif