comparison src/http/modules/perl/Makefile.PL @ 230:38e7b94d63ac NGINX_0_4_0

nginx 0.4.0 *) Change in internal API: the HTTP modules initialization was moved from the init module phase to the HTTP postconfiguration phase. *) Change: now the request body is not read beforehand for the ngx_http_perl_module: it's required to start the reading using the $r->has_request_body method. *) Feature: the ngx_http_perl_module supports the DECLINED return code. *) Feature: the ngx_http_dav_module supports the incoming "Date" header line for the PUT method. *) Feature: the "ssi" directive is available inside the "if" block. *) Bugfix: a segmentation fault occurred if there was an "index" directive with variables and the first index name was without variables; bug appeared in 0.1.29.
author Igor Sysoev <http://sysoev.ru>
date Wed, 30 Aug 2006 00:00:00 +0400
parents 3314be145cb9
children d0f7a625f27c
comparison
equal deleted inserted replaced
229:1965c8e23be7 230:38e7b94d63ac
10 PREREQ_PM => {}, # e.g., Module::Name => 1.1 10 PREREQ_PM => {}, # e.g., Module::Name => 1.1
11 11
12 ABSTRACT_FROM => 'nginx.pm', # retrieve abstract from module 12 ABSTRACT_FROM => 'nginx.pm', # retrieve abstract from module
13 AUTHOR => 'Igor Sysoev', 13 AUTHOR => 'Igor Sysoev',
14 14
15 CCFLAGS => "$ENV{NGX_PERL_CFLAGS}", 15 CCFLAGS => "$ENV{NGX_PM_CFLAGS}",
16 OPTIMIZE => '-O', 16 OPTIMIZE => '-O',
17 17
18 INC => "-I ../../../../../src/core " . 18 INC => "-I ../../../../../src/core " .
19 "-I ../../../../../src/event " . 19 "-I ../../../../../src/event " .
20 "-I ../../../../../src/os/unix " . 20 "-I ../../../../../src/os/unix " .
21 "-I ../../../../../src/http " . 21 "-I ../../../../../src/http " .
22 "-I ../../../../../src/http/modules " . 22 "-I ../../../../../src/http/modules " .
23 "-I ../../../../../src/http/modules/perl " . 23 "-I ../../../../../src/http/modules/perl " .
24 "-I ../../../../../$ENV{NGX_OBJS} " . 24 "-I ../../../../../$ENV{NGX_OBJS} " .
25 "-I ../../../../../$ENV{NGX_PCRE} " . 25 ($ENV{NGX_PCRE} =~ /^(YES|NO)/ ? "" :
26 "-I ../../../../../$ENV{NGX_ZLIB} ", 26 ($ENV{NGX_PCRE} =~ m#^/# ? "-I $ENV{NGX_PCRE} " :
27 "-I ../../../../../$ENV{NGX_PCRE} ")),
27 28
28 depend => { 29 depend => {
29 'nginx.c' => 30 'nginx.c' =>
30 "../../../../../src/http/modules/perl/ngx_http_perl_module.h" 31 "../../../../../src/http/modules/perl/ngx_http_perl_module.h"
31 }, 32 },