summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com>2016-09-07 19:43:11 +0200
committerPatrice Clement <monsieurp@gentoo.org>2016-09-09 15:27:40 +0200
commiteb7f0f0db28715272f604349da341acbba05e698 (patch)
treeda9a6dac8a76309d6d84ea162cc540237ad75f56 /dev-perl/Apache-SizeLimit
parentdev-python/behave: rev-bump for EAPI 6 bump and py-3.5 support (diff)
downloadgentoo-eb7f0f0db28715272f604349da341acbba05e698.tar.gz
gentoo-eb7f0f0db28715272f604349da341acbba05e698.tar.bz2
gentoo-eb7f0f0db28715272f604349da341acbba05e698.zip
dev-perl/Apache-SizeLimit: remove unused patch.
Closes: https://github.com/gentoo/gentoo/pull/2272 Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
Diffstat (limited to 'dev-perl/Apache-SizeLimit')
-rw-r--r--dev-perl/Apache-SizeLimit/files/Apache-SizeLimit-0.95-Fix_Linux-Smaps_detection.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/dev-perl/Apache-SizeLimit/files/Apache-SizeLimit-0.95-Fix_Linux-Smaps_detection.patch b/dev-perl/Apache-SizeLimit/files/Apache-SizeLimit-0.95-Fix_Linux-Smaps_detection.patch
deleted file mode 100644
index 56283f842509..000000000000
--- a/dev-perl/Apache-SizeLimit/files/Apache-SizeLimit-0.95-Fix_Linux-Smaps_detection.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From 6b1b60546ffca416a65d047a1c0d5d2b610b4dac Mon Sep 17 00:00:00 2001
-From: Christian Ruppert <idl0r@gentoo.org>
-Date: Fri, 25 Mar 2011 17:42:54 +0100
-Subject: [PATCH] Fix Linux::Smaps detection to *not* die if /proc/self/smaps doesn't exist
-
----
- lib/Apache/SizeLimit/Core.pm | 2 +-
- 1 files changed, 1 insertions(+), 1 deletions(-)
-
-diff --git a/lib/Apache/SizeLimit/Core.pm b/lib/Apache/SizeLimit/Core.pm
-index 5942bc8..f2fbac4 100644
---- a/lib/Apache/SizeLimit/Core.pm
-+++ b/lib/Apache/SizeLimit/Core.pm
-@@ -143,7 +143,7 @@ BEGIN {
-
- *_platform_getppid = \&_linux_getppid;
-
-- if (eval { require Linux::Smaps } && Linux::Smaps->new($$)) {
-+ if (eval { require Linux::Smaps && Linux::Smaps->new($$) }) {
- $USE_SMAPS = 1;
- *_platform_check_size = \&_linux_smaps_size_check;
- }
---
-1.7.3.4
-