comparison auto/lib/perl/conf @ 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 562806624c4a
children 1c4a5b3f9110
comparison
equal deleted inserted replaced
680:63a949f7ed4f 681:7e24168b0853
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"