From: ivan Date: Tue, 6 Jul 2004 08:43:54 +0000 (+0000) Subject: 0.32 (and then some) released X-Git-Tag: freeside_1_4_2beta1~48 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=99e7fe7d18b91fb886f684a01df2f4efe02b34eb 0.32 (and then some) released --- diff --git a/htetc/global.asa b/htetc/global.asa index 446845bb8..c362f1137 100644 --- a/htetc/global.asa +++ b/htetc/global.asa @@ -11,6 +11,10 @@ use HTML::Entities; use IO::Handle; use IO::File; use Net::Whois::Raw qw(whois); +if ( $] < 5.006 ) { + eval "use Net::Whois::Raw 0.32 qw(whois)"; + die $@ if $@; +} use Business::CreditCard; use String::Approx qw(amatch); use HTML::Widgets::SelectLayers 0.03; diff --git a/htetc/handler.pl b/htetc/handler.pl index 67719b8fe..aeae3800f 100644 --- a/htetc/handler.pl +++ b/htetc/handler.pl @@ -72,6 +72,10 @@ sub handler use IO::Handle; use IO::File; use Net::Whois::Raw qw(whois); + if ( $] < 5.006 ) { + eval "use Net::Whois::Raw 0.32 qw(whois)"; + die $@ if $@; + } use Business::CreditCard; use String::Approx qw(amatch); use HTML::Widgets::SelectLayers 0.03;