summaryrefslogtreecommitdiff
path: root/www/p5-Apache-Filter/patches
diff options
context:
space:
mode:
authorjlam <jlam>2001-10-01 02:09:46 +0000
committerjlam <jlam>2001-10-01 02:09:46 +0000
commit08558f34c22def31aaf4ad9bce7b50db5ec76b59 (patch)
tree1521ca8d05ed6f79f5a6a5b9592900139654fde4 /www/p5-Apache-Filter/patches
parent6568a132b656783d20c87054cc5badbca37cb034 (diff)
downloadpkgsrc-08558f34c22def31aaf4ad9bce7b50db5ec76b59.tar.gz
p5-Apache-Filter: alter the output of previous Apache handlers
These modules provide the ability to chain PerlHandler routines together, so that the output of one handler/filter becomes the input of the next handler/filter. The following Perl modules are known to be "Filter-aware": Apache::Registry (using Apache::RegistryFilter) Apache::SSI Apache::ASP HTML::Mason Apache::SimpleReplace
Diffstat (limited to 'www/p5-Apache-Filter/patches')
-rw-r--r--www/p5-Apache-Filter/patches/patch-aa29
1 files changed, 29 insertions, 0 deletions
diff --git a/www/p5-Apache-Filter/patches/patch-aa b/www/p5-Apache-Filter/patches/patch-aa
new file mode 100644
index 00000000000..89e8095d8a3
--- /dev/null
+++ b/www/p5-Apache-Filter/patches/patch-aa
@@ -0,0 +1,29 @@
+$NetBSD: patch-aa,v 1.1.1.1 2001/10/01 02:09:46 jlam Exp $
+
+--- Makefile.PL.orig Wed Aug 29 14:33:47 2001
++++ Makefile.PL
+@@ -1,14 +1,6 @@
+ use strict;
+ use ExtUtils::MakeMaker;
+ use lib 't/lib'; # distributed here until changes are incorporated into the real version
+-use Apache::test qw(have_httpd);
+-
+-my %params = Apache::test->get_test_params();
+-chomp (my $cwd = `pwd`);
+-Apache::test->write_httpd_conf
+- (%params,
+- include => do {local $/; <DATA>});
+-*MY::test = sub { Apache::test->MM_test(%params) } if have_httpd();
+
+ my $module = 'Apache::Filter';
+ my ($name, $dir);
+@@ -27,9 +19,6 @@
+ ),
+ },
+ 'clean' => {FILES => "t/httpd t/httpd.conf t/error_log"},
+- 'PREREQ_PM' => {
+- have_httpd() ? ('mod_perl' => '1.24_01') : (),
+- },
+ );
+
+ ##################################################################