Bug 4505 - Bumping the perl version to 5.8.8 or greater
authorChris Cormack <chrisc@catalyst.net.nz>
Sat, 22 May 2010 08:15:59 +0000 (20:15 +1200)
committerGalen Charlton <gmcharlt@gmail.com>
Mon, 24 May 2010 11:47:57 +0000 (07:47 -0400)
Signed-off-by: Galen Charlton <gmcharlt@gmail.com>

Makefile.PL
installer/install.pl

index 5966d0d..e1a3be2 100644 (file)
@@ -34,7 +34,7 @@ use C4::Installer;
 my $koha_pm = C4::Installer::PerlModules->new;
 
 my $DEBUG = 0;
-die "perl 5.6.1 or later required" unless ($] >= 5.006001);
+die "perl 5.8.8 or later required" unless ($] >= 5.008008);
 
 # Hash up directory structure & files beginning with the directory we were called from (should be the base of koha)...
 
index 437d03f..5fac1f6 100755 (executable)
@@ -58,7 +58,7 @@ if ( $step && $step == 1 ) {
     $template->param( language => 1 );
     $template->param( 'checkmodule' => 1 ); # we start with the assumption that there are no problems and set this to 0 if there are
 
-    unless ( $] >= 5.006001 ) {    # Bug 179
+    unless ( $] >= 5.008008 ) {    # Bug 4505
         $template->param( problems => 1, perlversion => 1, checkmodule => 0 );
     }