From 3ea77fd6a0b1d25c52b243deb399fdfb8ac3d01f Mon Sep 17 00:00:00 2001 From: tipaul Date: Thu, 2 Aug 2007 08:45:10 +0000 Subject: [PATCH] adding XML::RSS as mandatory package (to have RSS working) --- Makefile.PL | 1 + installer/install.pl | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile.PL b/Makefile.PL index f36b78907b..611f8b70d1 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -134,6 +134,7 @@ WriteMakefile( 'XML::LibXML' => 1.59, 'XML::SAX::ParserFactory' => 1.01, 'XML::Simple' => 2.14, +'XML::RSS' => 1.31, 'ZOOM' => 0, }, diff --git a/installer/install.pl b/installer/install.pl index 264cc69c86..e28ec61e18 100755 --- a/installer/install.pl +++ b/installer/install.pl @@ -118,7 +118,8 @@ if ($step && $step==1){ unless (eval {require Digest::MD5}) { push @missing,{name=>"Digest::MD5"} }; unless (eval {require MARC::Record}) { push @missing,{name=>"MARC::Record"} }; unless (eval {require Mail::Sendmail}) { push @missing,{name=>"Mail::Sendmail",usagemail=>1} }; - unless (eval {require List::MoreUtils}) { push @missing,{name=>"List::MoreUtils"} }; + unless (eval {require List::MoreUtils}) { push @missing,{name=>"List::MoreUtils"} }; + unless (eval {require XML::RSS}) { push @missing,{name=>"XML::RSS"} }; # The following modules are not mandatory, depends on how the library want to use Koha unless (eval {require PDF::API2}) { if ($#missing>=0) { # only when $#missing >= 0 so this isn't fatal -- 2.20.1