Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 23 Apr 2013 10:39:26 +0000 (UTC)
From:      Dag-Erling Smørgrav <des@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r316342 - in head/net/p5-RPC-XML: . files
Message-ID:  <201304231039.r3NAdQMO069510@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: des
Date: Tue Apr 23 10:39:26 2013
New Revision: 316342
URL: http://svnweb.freebsd.org/changeset/ports/316342

Log:
  Fix loop detection bug.
  
  Approved by:	perl (tobez)

Added:
  head/net/p5-RPC-XML/files/
  head/net/p5-RPC-XML/files/patch-lib-RPC-XML.pm   (contents, props changed)
Modified:
  head/net/p5-RPC-XML/Makefile

Modified: head/net/p5-RPC-XML/Makefile
==============================================================================
--- head/net/p5-RPC-XML/Makefile	Tue Apr 23 10:26:13 2013	(r316341)
+++ head/net/p5-RPC-XML/Makefile	Tue Apr 23 10:39:26 2013	(r316342)
@@ -7,6 +7,7 @@
 
 PORTNAME=	RPC-XML
 PORTVERSION=	0.77
+PORTREVISION=	1
 CATEGORIES=	net www perl5
 MASTER_SITES=	CPAN
 PKGNAMEPREFIX=	p5-

Added: head/net/p5-RPC-XML/files/patch-lib-RPC-XML.pm
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/p5-RPC-XML/files/patch-lib-RPC-XML.pm	Tue Apr 23 10:39:26 2013	(r316342)
@@ -0,0 +1,10 @@
+--- lib/RPC/XML.pm.orig	2011-08-22 11:29:30.000000000 +0200
++++ lib/RPC/XML.pm	2013-04-23 10:28:19.780990362 +0200
+@@ -258,6 +258,7 @@
+                     $type = reftype $_;
+                     die "Un-convertable reference: $type, cannot use\n";
+                 }
++                $seenrefs->{$_}--;
+             }
+             # You have to check ints first, because they match the
+             # next pattern (for doubles) too



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201304231039.r3NAdQMO069510>