diff options
author | demon <demon@FreeBSD.org> | 2013-08-12 19:15:04 +0800 |
---|---|---|
committer | demon <demon@FreeBSD.org> | 2013-08-12 19:15:04 +0800 |
commit | cd862d670bcdac6ee7966b2b8cc71616630fb7d3 (patch) | |
tree | 956e9ef8df7a23699060f3b25aa2441bed9d2516 /net-mgmt | |
parent | ee755ee3726da6e658510abe96eaf066cef0514e (diff) | |
download | freebsd-ports-gnome-cd862d670bcdac6ee7966b2b8cc71616630fb7d3.tar.gz freebsd-ports-gnome-cd862d670bcdac6ee7966b2b8cc71616630fb7d3.tar.zst freebsd-ports-gnome-cd862d670bcdac6ee7966b2b8cc71616630fb7d3.zip |
pack_sockaddr_in6 --> Socket6::pack_sockaddr_in6
PR: 181229
Submitted by: Darren Henderson <darren.henderson@gmail.com>
Diffstat (limited to 'net-mgmt')
-rw-r--r-- | net-mgmt/p5-SNMP_Session/Makefile | 2 | ||||
-rw-r--r-- | net-mgmt/p5-SNMP_Session/files/patch-SNMP_Session.pm | 10 |
2 files changed, 7 insertions, 5 deletions
diff --git a/net-mgmt/p5-SNMP_Session/Makefile b/net-mgmt/p5-SNMP_Session/Makefile index 2b1cea51df62..4aa224eda8c3 100644 --- a/net-mgmt/p5-SNMP_Session/Makefile +++ b/net-mgmt/p5-SNMP_Session/Makefile @@ -3,7 +3,7 @@ PORTNAME= SNMP_Session PORTVERSION= 1.13 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net-mgmt perl5 MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} PROJECTHOST= snmp-session diff --git a/net-mgmt/p5-SNMP_Session/files/patch-SNMP_Session.pm b/net-mgmt/p5-SNMP_Session/files/patch-SNMP_Session.pm index 1405beccfe19..11534f9e4c18 100644 --- a/net-mgmt/p5-SNMP_Session/files/patch-SNMP_Session.pm +++ b/net-mgmt/p5-SNMP_Session/files/patch-SNMP_Session.pm @@ -1,14 +1,16 @@ ---- lib/SNMP_Session.pm.orig 2011-01-31 14:10:12.000000000 +0600 -+++ lib/SNMP_Session.pm 2011-01-31 14:11:20.000000000 +0600 -@@ -146,7 +146,7 @@ +--- lib/SNMP_Session.pm.orig 2008-11-21 08:25:17.000000000 +0300 ++++ lib/SNMP_Session.pm 2013-08-12 15:13:26.000000000 +0400 +@@ -146,8 +146,8 @@ if (eval {local $SIG{__DIE__};require Socket6;} && eval {local $SIG{__DIE__};require IO::Socket::INET6; IO::Socket::INET6->VERSION("1.26");}) { - import Socket6; +- $ipv6_addr_len = length(pack_sockaddr_in6(161, inet_pton(AF_INET6(), "::1"))); + Socket6->import(qw(inet_pton inet_ntop getaddrinfo)); - $ipv6_addr_len = length(pack_sockaddr_in6(161, inet_pton(AF_INET6(), "::1"))); ++ $ipv6_addr_len = length(Socket6::pack_sockaddr_in6(161, inet_pton(AF_INET6(), "::1"))); $SNMP_Session::ipv6available = 1; } + eval 'local $SIG{__DIE__};local $SIG{__WARN__};$dont_wait_flags = MSG_DONTWAIT();'; @@ -549,7 +549,7 @@ # complaining about AF_INET6 when Socket6 is not available |