comparison auto/lib/perl/make @ 681:7e24168b0853 release-0.4.0

nginx-0.4.0-RELEASE import *) 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; the bug had appeared in 0.1.29.
author Igor Sysoev <igor@sysoev.ru>
date Wed, 30 Aug 2006 10:39:17 +0000
parents 77f77f53214a
children 5187a63d9fca
comparison
equal deleted inserted replaced
680:63a949f7ed4f 681:7e24168b0853
22 cp -p src/http/modules/perl/nginx.* $NGX_OBJS/src/http/modules/perl/ 22 cp -p src/http/modules/perl/nginx.* $NGX_OBJS/src/http/modules/perl/
23 cp -p src/http/modules/perl/typemap $NGX_OBJS/src/http/modules/perl/ 23 cp -p src/http/modules/perl/typemap $NGX_OBJS/src/http/modules/perl/
24 cp -p src/http/modules/perl/Makefile.PL $NGX_OBJS/src/http/modules/perl/ 24 cp -p src/http/modules/perl/Makefile.PL $NGX_OBJS/src/http/modules/perl/
25 25
26 cd $NGX_OBJS/src/http/modules/perl \ 26 cd $NGX_OBJS/src/http/modules/perl \
27 && NGX_PERL_CFLAGS="$NGX_PERL_CFLAGS $NGX_CC_OPT" \ 27 && NGX_PM_CFLAGS="\$(NGX_PM_CFLAGS) -g $NGX_CC_OPT" \
28 NGX_PCRE=$PCRE \ 28 NGX_PCRE=$PCRE \
29 NGX_ZLIB=$ZLIB \
30 NGX_OBJS=$NGX_OBJS \ 29 NGX_OBJS=$NGX_OBJS \
31 $NGX_PERL Makefile.PL \ 30 $NGX_PERL Makefile.PL \
32 LIB=$NGX_PERL_MODULES 31 LIB=$NGX_PERL_MODULES
33 32
34 33