comparison auto/lib/perl/make @ 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 50bd986c5d63
children ff906029dd40
comparison
equal deleted inserted replaced
229:1965c8e23be7 230:38e7b94d63ac
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