svn commit: r452405 - head/www/p5-LWP-Authen-Wsse/files
Mathieu Arnold
mat at FreeBSD.org
Thu Oct 19 09:05:27 UTC 2017
Author: mat
Date: Thu Oct 19 09:05:25 2017
New Revision: 452405
URL: https://svnweb.freebsd.org/changeset/ports/452405
Log:
Fix build with recent perl5-devel.
Sponsored by: Absolight
Added:
head/www/p5-LWP-Authen-Wsse/files/
head/www/p5-LWP-Authen-Wsse/files/patch-inc_Module_Install.pm (contents, props changed)
Added: head/www/p5-LWP-Authen-Wsse/files/patch-inc_Module_Install.pm
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/www/p5-LWP-Authen-Wsse/files/patch-inc_Module_Install.pm Thu Oct 19 09:05:25 2017 (r452405)
@@ -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}++;
More information about the svn-ports-head
mailing list