summaryrefslogtreecommitdiff
path: root/www/p5-Apache-SSI/patches
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2001-10-01 02:12:59 +0000
committerjlam <jlam@pkgsrc.org>2001-10-01 02:12:59 +0000
commit42500b7205fa0c3cd9240df9bf508df173406ce8 (patch)
tree3b13184eede90c524e415ef5f2e091aeaa375551 /www/p5-Apache-SSI/patches
parent1c954a10b35b6927ddaa710c8964174cce617119 (diff)
downloadpkgsrc-42500b7205fa0c3cd9240df9bf508df173406ce8.tar.gz
p5-Apache-SSI - implements Server Side Includes in Perl
Apache::SSI implements the functionality of mod_include for handling server-parsed html documents. It runs under Apache's mod_perl. In my mind, there are two main reasons you might want to use this module: you can sub-class it to implement your own custom SSI directives, and/or you can parse the output of other mod_perl handlers, or send the SSI output through another handler (use Apache::Filter to do this).
Diffstat (limited to 'www/p5-Apache-SSI/patches')
-rw-r--r--www/p5-Apache-SSI/patches/patch-aa19
1 files changed, 19 insertions, 0 deletions
diff --git a/www/p5-Apache-SSI/patches/patch-aa b/www/p5-Apache-SSI/patches/patch-aa
new file mode 100644
index 00000000000..1fab08e51db
--- /dev/null
+++ b/www/p5-Apache-SSI/patches/patch-aa
@@ -0,0 +1,19 @@
+$NetBSD: patch-aa,v 1.1.1.1 2001/10/01 02:12:59 jlam Exp $
+
+--- Makefile.PL.orig Fri Nov 3 15:43:38 2000
++++ Makefile.PL
+@@ -2,14 +2,6 @@
+ use lib 't/lib';
+ use Apache::test;
+
+-my %params = Apache::test->get_test_params();
+-chomp (my $cwd = `pwd`);
+-Apache::test->write_httpd_conf
+- (%params,
+- include => join '', <DATA>);
+-*MY::test = sub { Apache::test->MM_test(%params) };
+-
+-
+ my $module = 'Apache::SSI';
+ my ($name, $dir);
+ ($name = $module) =~ s/.*::(\w+)/$1.pm/;