aboutsummaryrefslogtreecommitdiffstats
path: root/www
diff options
context:
space:
mode:
authormat <mat@FreeBSD.org>2017-10-19 17:05:25 +0800
committermat <mat@FreeBSD.org>2017-10-19 17:05:25 +0800
commita5a0df37c4e3a2ec4d624fa2c3734a56b597a8d5 (patch)
tree52f9bb72c4b4259c0f0bf61b9ca1c982962b33f1 /www
parent44cd2c61cd73917efc4e27e012907955b0fe90c3 (diff)
downloadfreebsd-ports-gnome-a5a0df37c4e3a2ec4d624fa2c3734a56b597a8d5.tar.gz
freebsd-ports-gnome-a5a0df37c4e3a2ec4d624fa2c3734a56b597a8d5.tar.zst
freebsd-ports-gnome-a5a0df37c4e3a2ec4d624fa2c3734a56b597a8d5.zip
Fix build with recent perl5-devel.
Sponsored by: Absolight
Diffstat (limited to 'www')
-rw-r--r--www/p5-LWP-Authen-Wsse/files/patch-inc_Module_Install.pm11
1 files changed, 11 insertions, 0 deletions
diff --git a/www/p5-LWP-Authen-Wsse/files/patch-inc_Module_Install.pm b/www/p5-LWP-Authen-Wsse/files/patch-inc_Module_Install.pm
new file mode 100644
index 000000000000..024ba9a365d7
--- /dev/null
+++ b/www/p5-LWP-Authen-Wsse/files/patch-inc_Module_Install.pm
@@ -0,0 +1,11 @@
+--- inc/Module/Install.pm.orig 2005-12-26 16:21:34 UTC
++++ inc/Module/Install.pm
+@@ -81,7 +81,7 @@ sub preload {
+ my %seen_method;
+ foreach my $obj (@exts) {
+ while (my ($method, $glob) = each %{ref($obj) . '::'}) {
+- next unless defined *{$glob}{CODE};
++ next unless exists &{ref($obj).'::'.$method};
+ next if $method =~ /^_/;
+ next if $method eq uc($method);
+ $seen_method{$method}++;