summaryrefslogtreecommitdiff
path: root/www/ap2-perl/patches
diff options
context:
space:
mode:
authoradam <adam>2011-04-04 09:24:14 +0000
committeradam <adam>2011-04-04 09:24:14 +0000
commitdcc767127093c609ee21659006ab37d3e98cb077 (patch)
tree0019ba063e664f5a38f5d9a708e2bbe7d80d5eb4 /www/ap2-perl/patches
parentb116e3adfae06ff4edda1b66fe44c63115d88056 (diff)
downloadpkgsrc-dcc767127093c609ee21659006ab37d3e98cb077.tar.gz
Changes 2.0.5:
* Prepare modperl for the upcoming perl 5.14 * Add lib/ModPerl/MethodLookup.pm to MANIFEST via lib/ModPerl/Manifest.pm * PerlIOApache_write() now throws an APR::Error object, rather than just a string error, if modperl_wbucket_write() fails. * Authentication tests fail with LWP 5.815 and later * Concise test won't perform unless StatusTerse is set to ON * Look for a usable apxs in $ENV{PATH} if all other options fail, then prompt the user for one. * Work around bootstrap warnings when Apache2::BuildConfig has not been created yet. * Remove Apache::test compatibility (part of mod_perl 1.2.7), that code causes build issues and is 4 versions out of date. * Make sure perl is built either with multiplicity and ithreads or without both * Support for "install_vendor" and "install_site" make targets * Run tests on bundled pure perl Apache::* modules * Implement a mini-preprocess language for map-files in xs/maps. * Implement APR::Socket::fileno * Export PROXYREQ_RESPONSE, a missing PROXYREQ_* constant * Make sure standard file descriptors are preserved by the perl-script handler * Fix the filter init handler attribute check in modperl_filter_resolve_init_handler() * Make sure buffer is a valid SV in modperl_filter_read() * Move modperl_response_finish() out of modperl_response_handler_run in mod_perl.c
Diffstat (limited to 'www/ap2-perl/patches')
-rw-r--r--www/ap2-perl/patches/patch-aa53
1 files changed, 0 insertions, 53 deletions
diff --git a/www/ap2-perl/patches/patch-aa b/www/ap2-perl/patches/patch-aa
deleted file mode 100644
index 74b5750aeaa..00000000000
--- a/www/ap2-perl/patches/patch-aa
+++ /dev/null
@@ -1,53 +0,0 @@
-$NetBSD: patch-aa,v 1.3 2009/06/15 17:38:21 he Exp $
-
-This is revision 760926 from modperl's svn repository:
-http://svn.apache.org/viewvc/perl/modperl/trunk/lib/Apache2/Status.pm?view=log&pathrev=761081
-Fix an XSS bug in Apache2::Status, ref. CVE-2009-0796.
-
---- lib/Apache2/Status.pm.orig 2007/12/31 08:05:11 607697
-+++ lib/Apache2/Status.pm 2009/04/01 15:39:56 760926
-@@ -29,7 +29,7 @@
-
- use Apache2::Const -compile => qw(OK);
-
--$Apache2::Status::VERSION = '4.00'; # mod_perl 2.0
-+$Apache2::Status::VERSION = '4.01'; # mod_perl 2.0
-
- use constant IS_WIN32 => ($^O eq "MSWin32");
-
-@@ -126,7 +126,7 @@
- $r->print(symdump($r, $qs));
- }
- else {
-- my $uri = $r->uri;
-+ my $uri = $r->location;
- $r->print('<p>');
- $r->print(
- map { qq[<a href="$uri?$_">$status{$_}</a><br />\n] } sort { lc $a cmp lc $b } keys %status
-@@ -198,7 +198,7 @@
- sub status_inc {
- my ($r) = @_;
-
-- my $uri = $r->uri;
-+ my $uri = $r->location;
- my @retval = (
- '<table border="1">',
- "<tr>",
-@@ -289,7 +289,7 @@
- my ($r) = @_;
-
- local $_;
-- my $uri = $r->uri;
-+ my $uri = $r->location;
- my $cache = __PACKAGE__->registry_cache;
-
- my @retval = "<h2>Compiled registry scripts grouped by their handler</h2>";
-@@ -765,7 +765,7 @@
- my ($self, $package, $r) = @_;
-
- my @m = qw(<table>);
-- my $uri = $r->uri;
-+ my $uri = $r->location;
- my $is_main = $package eq "main";
-
- my $do_dump = has($r, "dumper");