You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-perl/Apache-SizeLimit/files/Apache-SizeLimit-0.95-Fix_L...

26 lines
851 B

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