comparison src/http/modules/perl/Makefile.PL @ 694:88a1b4797f2e NGINX_1_3_10

nginx 1.3.10 *) Change: domain names specified in configuration file are now resolved to IPv6 addresses as well as IPv4 ones. *) Change: now if the "include" directive with mask is used on Unix systems, included files are sorted in alphabetical order. *) Change: the "add_header" directive adds headers to 201 responses. *) Feature: the "geo" directive now supports IPv6 addresses in CIDR notation. *) Feature: the "flush" and "gzip" parameters of the "access_log" directive. *) Feature: variables support in the "auth_basic" directive. *) Bugfix: nginx could not be built with the ngx_http_perl_module in some cases. *) Bugfix: a segmentation fault might occur in a worker process if the ngx_http_xslt_module was used. *) Bugfix: nginx could not be built on MacOSX in some cases. Thanks to Piotr Sikora. *) Bugfix: the "limit_rate" directive with high rates might result in truncated responses on 32-bit platforms. Thanks to Alexey Antropov. *) Bugfix: a segmentation fault might occur in a worker process if the "if" directive was used. Thanks to Piotr Sikora. *) Bugfix: a "100 Continue" response was issued with "413 Request Entity Too Large" responses. *) Bugfix: the "image_filter", "image_filter_jpeg_quality" and "image_filter_sharpen" directives might be inherited incorrectly. Thanks to Ian Babrou. *) Bugfix: "crypt_r() failed" errors might appear if the "auth_basic" directive was used on Linux. *) Bugfix: in backup servers handling. Thanks to Thomas Chen. *) Bugfix: proxied HEAD requests might return incorrect response if the "gzip" directive was used.
author Igor Sysoev <http://sysoev.ru>
date Tue, 25 Dec 2012 00:00:00 +0400
parents e5fa0a4a7d27
children
comparison
equal deleted inserted replaced
693:cfd4279acc6e 694:88a1b4797f2e
14 AUTHOR => 'Igor Sysoev', 14 AUTHOR => 'Igor Sysoev',
15 15
16 CCFLAGS => "$ENV{NGX_PM_CFLAGS}", 16 CCFLAGS => "$ENV{NGX_PM_CFLAGS}",
17 OPTIMIZE => '-O', 17 OPTIMIZE => '-O',
18 18
19 INC => "-I ../../../../../src/core " . 19 INC => join(" ", map {
20 "-I ../../../../../src/event " . 20 m#^/# ? "-I $_" : "-I ../../../../../$_"
21 "-I ../../../../../src/os/unix " . 21 } (split /\s+/, $ENV{NGX_INCS})),
22 "-I ../../../../../src/http " .
23 "-I ../../../../../src/http/modules " .
24 "-I ../../../../../src/http/modules/perl " .
25 "-I ../../../../../$ENV{NGX_OBJS} " .
26 ($ENV{NGX_PCRE} =~ /^(YES|NO)/ ? "" :
27 ($ENV{NGX_PCRE} =~ m#^/# ? "-I $ENV{NGX_PCRE} " :
28 "-I ../../../../../$ENV{NGX_PCRE} ")) .
29 ($ENV{NGX_OPENSSL} =~ /^(YES|NO)/ ? "" :
30 ($ENV{NGX_OPENSSL} =~ m#^/# ?
31 "-I $ENV{NGX_OPENSSL}/.openssl/include " :
32 "-I ../../../../../$ENV{NGX_OPENSSL}/.openssl/include ")),
33 22
34 depend => { 23 depend => {
35 'nginx.c' => 24 'nginx.c' =>
36 "../../../../../src/http/modules/perl/ngx_http_perl_module.h" 25 "../../../../../src/http/modules/perl/ngx_http_perl_module.h"
37 }, 26 },