[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Koha-cvs] koha/misc Install.pm [rel_2_2]
From: |
paul poulain |
Subject: |
[Koha-cvs] koha/misc Install.pm [rel_2_2] |
Date: |
Mon, 27 Feb 2006 16:31:37 +0000 |
CVSROOT: /cvsroot/koha
Module name: koha
Branch: rel_2_2
Changes by: paul poulain <address@hidden> 06/02/27 16:31:37
Modified files:
misc : Install.pm
Log message:
addind LWP::Simple and XML::Simple package (required for amazon package)
CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/koha/misc/Install.pm.diff?only_with_tag=rel_2_2&tr1=1.88.2.5&tr2=1.88.2.6&r1=text&r2=text
Patches:
Index: koha/misc/Install.pm
diff -u koha/misc/Install.pm:1.88.2.5 koha/misc/Install.pm:1.88.2.6
--- koha/misc/Install.pm:1.88.2.5 Fri Jun 3 13:27:25 2005
+++ koha/misc/Install.pm Mon Feb 27 16:31:37 2006
@@ -881,6 +881,18 @@
push @missing, "Net::Z3950";
}
}
+ unless (eval {require LWP::Simple) {
+ showmessage(getmessage('LWP::Simple'), 'PressEnter', '', 1);
+ if ($#missing>=0) { # see above note
+ push @missing, "LWP::Simple";
+ }
+ }
+ unless (eval {require XML::Simple) {
+ showmessage(getmessage('XML::Simple'), 'PressEnter', '', 1);
+ if ($#missing>=0) { # see above note
+ push @missing, "XML::Simple";
+ }
+ }
#
# Print out a list of any missing modules
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Koha-cvs] koha/misc Install.pm [rel_2_2],
paul poulain <=