From: Frédéric Buclin Date: Fri, 19 Oct 2012 09:54:54 +0000 (+0200) Subject: Bug 803295: Bump the minimum requirement for DBI to 1.54 X-Git-Tag: bugzilla-4.5.1~340 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=64bd0e0eebc2421ec5b8fc84983969ee335860ce;p=thirdparty%2Fbugzilla.git Bug 803295: Bump the minimum requirement for DBI to 1.54 r=glob a=LpSolit --- diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm index 5dbb8344ab..7231e81134 100644 --- a/Bugzilla/Install/Requirements.pm +++ b/Bugzilla/Install/Requirements.pm @@ -115,10 +115,11 @@ sub REQUIRED_MODULES { module => 'DateTime::TimeZone', version => ON_WINDOWS ? '0.79' : '0.71' }, + # 1.54 is required for Perl 5.10+. It also makes DBD::Oracle happy. { package => 'DBI', module => 'DBI', - version => (vers_cmp($perl_ver, '5.13.3') > -1) ? '1.614' : '1.41' + version => (vers_cmp($perl_ver, '5.13.3') > -1) ? '1.614' : '1.54' }, # 2.22 fixes various problems related to UTF8 strings in hash keys, # as well as line endings on Windows.