comparison auto/lib/perl/conf @ 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 1bf60f8c5c9e
children 6ae1357b7b7c
comparison
equal deleted inserted replaced
229:1965c8e23be7 230:38e7b94d63ac
17 echo 17 echo
18 18
19 exit 1; 19 exit 1;
20 fi 20 fi
21 21
22 CFLAGS="$CFLAGS `$NGX_PERL -MExtUtils::Embed -e ccopts`" 22 NGX_PERL_CFLAGS="$CFLAGS `$NGX_PERL -MExtUtils::Embed -e ccopts`"
23 # gcc 4.1/4.2 23 NGX_PM_CFLAGS=`$NGX_PERL -MExtUtils::Embed -e ccopts`
24 CFLAGS=`echo $CFLAGS | sed -e 's/-Wunused-value/-Wno-unused-value/'` 24
25 # gcc 4.1/4.2 warn about unused values in pTHX_
26 NGX_PERL_CFLAGS=`echo $NGX_PERL_CFLAGS \
27 | sed -e 's/-Wunused-value/-Wno-unused-value/'`
28 # icc8 warns 'declaration hides parameter "my_perl"' in ENTER and LEAVE
29 NGX_PERL_CFLAGS=`echo $NGX_PERL_CFLAGS \
30 | sed -e 's/-wd171/-wd171 -wd1599/'`
31
25 ngx_perl_ldopts=`$NGX_PERL -MExtUtils::Embed -e ldopts` 32 ngx_perl_ldopts=`$NGX_PERL -MExtUtils::Embed -e ldopts`
26 33
27 if $NGX_PERL -V:usemultiplicity | grep define > /dev/null; then 34 if $NGX_PERL -V:usemultiplicity | grep define > /dev/null; then
28 have=NGX_HAVE_PERL_MULTIPLICITY . auto/have 35 have=NGX_HAVE_PERL_MULTIPLICITY . auto/have
29 echo " + perl interpreter multiplicity found" 36 echo " + perl interpreter multiplicity found"