From d39c50ae5031642b08f169127dc24d89ee3e8b3c Mon Sep 17 00:00:00 2001 From: Ryan Voots Date: Thu, 20 Oct 2011 22:47:36 -0400 Subject: [PATCH 1/2] adding ipv6 support --- plugins/get.pm | 1 + plugins/head.pm | 1 + plugins/title.pm | 1 + 3 files changed, 3 insertions(+) diff --git a/plugins/get.pm b/plugins/get.pm index 9b7c934..63457d0 100644 --- a/plugins/get.pm +++ b/plugins/get.pm @@ -1,3 +1,4 @@ +use Net::INET6Glue::INET_is_INET6; use LWP::UserAgent; use HTML::TreeBuilder::XPath; diff --git a/plugins/head.pm b/plugins/head.pm index b9193af..79ff37e 100644 --- a/plugins/head.pm +++ b/plugins/head.pm @@ -1,3 +1,4 @@ +use Net::INET6Glue::INET_is_INET6; use LWP::UserAgent; no warnings 'void'; sub { diff --git a/plugins/title.pm b/plugins/title.pm index 7241b5b..7e15089 100644 --- a/plugins/title.pm +++ b/plugins/title.pm @@ -1,3 +1,4 @@ +use Net::INET6Glue::INET_is_INET6; use WWW::Mechanize; no warnings 'void'; sub { From bb23de34ed88145ea61c56327f379857b583826b Mon Sep 17 00:00:00 2001 From: Ryan Voots Date: Thu, 20 Oct 2011 22:48:53 -0400 Subject: [PATCH 2/2] adding it here for support --- Makefile.PL | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile.PL b/Makefile.PL index f92c6c8..e64f0bc 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -27,5 +27,6 @@ requires 'DBD::SQLite' => 0; requires 'DBI' => 0; requires 'Net::DNS' => 0; requires 'HTML::TreeBuilder' => 0; +requires 'Net::INET6Glue::INET_is_INET6' => 0; WriteAll;