From 12d71d6d6e8d0391acbd2be651054f82476bd868 Mon Sep 17 00:00:00 2001 From: Mark Tompsett Date: Tue, 18 Sep 2012 13:15:18 +0800 Subject: [PATCH] Bug 8780 - Lower dependency version for DateTime::TimeZone Content-Type: text/plain; charset="utf-8" The fresh install of Debian, with the debian.koha-community.org repository, only has version 1.20 by default. As only the most basic functionality is being used, this version number should be lowered from 1.26 to 1.20 in ./C4/Installer/PerlDependencies.pm to make git installations cleaner. --- C4/Installer/PerlDependencies.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C4/Installer/PerlDependencies.pm b/C4/Installer/PerlDependencies.pm index 263ae40..7c9dc3e 100644 --- a/C4/Installer/PerlDependencies.pm +++ b/C4/Installer/PerlDependencies.pm @@ -202,7 +202,7 @@ our $PERL_DEPS = { 'DateTime::TimeZone' => { 'usage' => 'Core', 'required' => '1', - 'min_ver' => '1.26' + 'min_ver' => '1.20' }, 'DateTime::Format::DateParse' => { 'usage' => 'Core', -- 1.7.9.5