fix patch to not require Socket6

This commit is contained in:
Tom Callaway 2008-04-09 14:54:20 +00:00
parent 30b03adc50
commit fcb201ea03
2 changed files with 5 additions and 2 deletions

View File

@ -6,7 +6,7 @@ diff -up Net-DNS-0.63/lib/Net/DNS/Resolver/Base.pm.BAD Net-DNS-0.63/lib/Net/DNS/
eval {require IO::Socket::INET6; IO::Socket::INET6->VERSION("2.00");} eval {require IO::Socket::INET6; IO::Socket::INET6->VERSION("2.00");}
) { ) {
- import Socket6; - import Socket6;
+ use Socket6 (qw(getaddrinfo)); + Socket6->import(qw(getaddrinfo));
$has_inet6=1; $has_inet6=1;
}else{ }else{
$has_inet6=0; $has_inet6=0;

View File

@ -1,6 +1,6 @@
Name: perl-Net-DNS Name: perl-Net-DNS
Version: 0.63 Version: 0.63
Release: 2%{?dist} Release: 3%{?dist}
Summary: DNS resolver modules for Perl Summary: DNS resolver modules for Perl
License: GPL+ or Artistic License: GPL+ or Artistic
Group: Development/Libraries Group: Development/Libraries
@ -82,6 +82,9 @@ rm -rf $RPM_BUILD_ROOT
%changelog %changelog
* Wed Apr 9 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.63-3
- fix patch to not require Socket6
* Wed Apr 9 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.63-2 * Wed Apr 9 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.63-2
- fix AF_INET6/PF_INET6 redefine noise (bz 437681) - fix AF_INET6/PF_INET6 redefine noise (bz 437681)