Не компилируется :(

Igor Sysoev is at rambler-co.ru
Sat Jun 7 15:36:22 MSD 2008


On Sat, Jun 07, 2008 at 03:29:15PM +0400, Борис Долгов wrote:

> Доброго дня всем!
> 
> ./configure --with-http_stub_status_module
> --without-http_charset_module --without-http_ssi_module
> --without-http_userid_module  --without-http_access_module
> --without-http_auth_basic_module --without-http_autoindex_module
> --without-http_geo_module  --without-http_referer_module
> --without-http_rewrite_module --without-http_fastcgi_module
> --without-http_memcached_module  --without-http_browser_module
> --without-http_upstream_ip_hash_module
> ....
> cc1: warnings being treated as errors
> src/http/ngx_http.c: In function Б─≤ngx_http_optimize_serversБ─≥:
> src/http/ngx_http.c:1300: warning: unused variable Б─≤iБ─≥
> 
> Лазить в исходники боюсь - спать по ночам хочется спокойно :)
> При этом 10 минут назад скомпилировалось на другом сервере совершенно спокойно.
> nginx-0.7.1
> Linux vita.local 2.6.18-53.el5 #1 SMP Mon Nov 12 02:14:55 EST 2007
> x86_64 x86_64 x86_64 GNU/Linux
> 
> Что делать?

Патч.


-- 
Игорь Сысоев
http://sysoev.ru
-------------- next part --------------
Index: src/http/ngx_http.c
===================================================================
--- src/http/ngx_http.c	(revision 1361)
+++ src/http/ngx_http.c	(working copy)
@@ -1300,14 +1300,14 @@
     ngx_array_t *in_ports)
 {
     ngx_int_t                  rc;
-    ngx_uint_t                 s, p, a, i;
+    ngx_uint_t                 s, p, a;
     ngx_hash_init_t            hash;
     ngx_http_server_name_t    *name;
     ngx_hash_keys_arrays_t     ha;
     ngx_http_conf_in_port_t   *in_port;
     ngx_http_conf_in_addr_t   *in_addr;
 #if (NGX_PCRE)
-    ngx_uint_t                 regex;
+    ngx_uint_t                 regex, i;
 #endif
 
     in_port = in_ports->elts;


More information about the nginx-ru mailing list