1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-22 04:17:44 +00:00

lang/perl5.16: fix warning in Math/BigInt.pm

See also https://rt.cpan.org/Public/Bug/Display.html?id=80182

PR:             ports/185541
Approved-by:    tobez (maintainer timeout), jadawin (mentor)
This commit is contained in:
Kurt Jaeger 2014-06-10 09:21:22 +00:00
parent 47eee6e7f4
commit 9560eaa378
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=357286
2 changed files with 12 additions and 1 deletions

View File

@ -3,7 +3,7 @@
PORTNAME= perl
PORTVERSION= ${PERL_VERSION}
PORTREVISION= 10
PORTREVISION= 11
CATEGORIES= lang devel perl5
MASTER_SITES= CPAN \
${MASTER_SITE_LOCAL:S/$/:local/} \

View File

@ -0,0 +1,11 @@
--- dist/Math-BigInt/lib/Math/BigInt.pm-orig 2014-06-09 16:22:23.000000000 +0200
+++ dist/Math-BigInt/lib/Math/BigInt.pm 2014-06-09 16:22:54.000000000 +0200
@@ -62,7 +62,7 @@
'>>=' => sub { $_[0]->brsft($_[1]); },
# not supported by Perl yet
-'..' => \&_pointpoint,
+# '..' => \&_pointpoint,
'<=>' => sub { my $rc = $_[2] ?
ref($_[0])->bcmp($_[1],$_[0]) :