[Koha-cvs] koha/misc Install.pm [rel_2_2]

paul poulain paul at koha-fr.org
Tue Sep 12 11:28:23 CEST 2006


CVSROOT:	/cvsroot/koha
Module name:	koha
Branch:		rel_2_2
Changes by:	paul poulain <tipaul>	06/09/12 09:28:23

Modified files:
	misc           : Install.pm 

Log message:
	adding some package check

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/misc/Install.pm?cvsroot=koha&only_with_tag=rel_2_2&r1=1.88.2.13&r2=1.88.2.14

Patches:
Index: Install.pm
===================================================================
RCS file: /cvsroot/koha/koha/misc/Install.pm,v
retrieving revision 1.88.2.13
retrieving revision 1.88.2.14
diff -u -b -r1.88.2.13 -r1.88.2.14
--- Install.pm	31 Aug 2006 16:30:06 -0000	1.88.2.13
+++ Install.pm	12 Sep 2006 09:28:22 -0000	1.88.2.14
@@ -904,16 +904,18 @@
 		}
     }
     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";
 		}
+    unless (eval {require Date::Calc})       {
+		if ($#missing>=0) { # see above note
+			push @missing, "Date::Calc";
+		}
     }
 
 #





More information about the Koha-cvs mailing list