[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Koha-cvs] koha Makefile.PL installer/install.pl
From: |
paul poulain |
Subject: |
[Koha-cvs] koha Makefile.PL installer/install.pl |
Date: |
Thu, 02 Aug 2007 08:45:11 +0000 |
CVSROOT: /sources/koha
Module name: koha
Changes by: paul poulain <tipaul> 07/08/02 08:45:10
Modified files:
. : Makefile.PL
installer : install.pl
Log message:
adding XML::RSS as mandatory package (to have RSS working)
CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/Makefile.PL?cvsroot=koha&r1=1.12&r2=1.13
http://cvs.savannah.gnu.org/viewcvs/koha/installer/install.pl?cvsroot=koha&r1=1.13&r2=1.14
Patches:
Index: Makefile.PL
===================================================================
RCS file: /sources/koha/koha/Makefile.PL,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -b -r1.12 -r1.13
--- Makefile.PL 18 Jul 2007 08:14:32 -0000 1.12
+++ Makefile.PL 2 Aug 2007 08:45:10 -0000 1.13
@@ -134,6 +134,7 @@
'XML::LibXML' => 1.59,
'XML::SAX::ParserFactory' => 1.01,
'XML::Simple' => 2.14,
+'XML::RSS' => 1.31,
'ZOOM' => 0,
},
Index: installer/install.pl
===================================================================
RCS file: /sources/koha/koha/installer/install.pl,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -b -r1.13 -r1.14
--- installer/install.pl 11 Jul 2007 10:27:11 -0000 1.13
+++ installer/install.pl 2 Aug 2007 08:45:10 -0000 1.14
@@ -119,6 +119,7 @@
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 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
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Koha-cvs] koha Makefile.PL installer/install.pl,
paul poulain <=