Author: stas Date: Mon Nov 29 14:43:53 2004 New Revision: 106966 URL: http://svn.apache.org/viewcvs?view=rev&rev=106966 Log: add missing M_POST compilations
Modified: perl/modperl/trunk/t/filter/TestFilter/both_str_native_remove.pm perl/modperl/trunk/t/response/TestAPI/content_encoding.pm perl/modperl/trunk/t/response/TestAPI/in_out_filters.pm Modified: perl/modperl/trunk/t/filter/TestFilter/both_str_native_remove.pm Url: http://svn.apache.org/viewcvs/perl/modperl/trunk/t/filter/TestFilter/both_str_native_remove.pm?view=diff&rev=106966&p1=perl/modperl/trunk/t/filter/TestFilter/both_str_native_remove.pm&r1=106965&p2=perl/modperl/trunk/t/filter/TestFilter/both_str_native_remove.pm&r2=106966 ============================================================================== --- perl/modperl/trunk/t/filter/TestFilter/both_str_native_remove.pm (original) +++ perl/modperl/trunk/t/filter/TestFilter/both_str_native_remove.pm Mon Nov 29 14:43:53 2004 @@ -14,7 +14,7 @@ use TestCommon::Utils (); -use Apache::Const -compile => qw(OK DECLINED); +use Apache::Const -compile => qw(OK DECLINED M_POST); # this filter removes the next filter in chain and itself sub remove_includes { Modified: perl/modperl/trunk/t/response/TestAPI/content_encoding.pm Url: http://svn.apache.org/viewcvs/perl/modperl/trunk/t/response/TestAPI/content_encoding.pm?view=diff&rev=106966&p1=perl/modperl/trunk/t/response/TestAPI/content_encoding.pm&r1=106965&p2=perl/modperl/trunk/t/response/TestAPI/content_encoding.pm&r2=106966 ============================================================================== --- perl/modperl/trunk/t/response/TestAPI/content_encoding.pm (original) +++ perl/modperl/trunk/t/response/TestAPI/content_encoding.pm Mon Nov 29 14:43:53 2004 @@ -10,7 +10,7 @@ use TestCommon::Utils (); -use Apache::Const -compile => qw(OK DECLINED); +use Apache::Const -compile => qw(OK DECLINED M_POST); sub handler { my $r = shift; Modified: perl/modperl/trunk/t/response/TestAPI/in_out_filters.pm Url: http://svn.apache.org/viewcvs/perl/modperl/trunk/t/response/TestAPI/in_out_filters.pm?view=diff&rev=106966&p1=perl/modperl/trunk/t/response/TestAPI/in_out_filters.pm&r1=106965&p2=perl/modperl/trunk/t/response/TestAPI/in_out_filters.pm&r2=106966 ============================================================================== --- perl/modperl/trunk/t/response/TestAPI/in_out_filters.pm (original) +++ perl/modperl/trunk/t/response/TestAPI/in_out_filters.pm Mon Nov 29 14:43:53 2004 @@ -15,7 +15,7 @@ use APR::Bucket (); use Apache::Filter (); -use Apache::Const -compile => qw(OK DECLINED MODE_READBYTES); +use Apache::Const -compile => qw(OK M_POST DECLINED MODE_READBYTES); use APR::Const -compile => qw(SUCCESS BLOCK_READ); use constant IOBUFSIZE => 8192;