diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2012-10-19 11:54:54 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2012-10-19 11:54:54 +0200 |
commit | 64bd0e0eebc2421ec5b8fc84983969ee335860ce (patch) | |
tree | 14d427f44ccbdc13f43f428f515b42a298a4bd48 /Bugzilla | |
parent | fc443eda7c58d236302c9b07017ba6cb059a6120 (diff) | |
download | bugzilla-64bd0e0eebc2421ec5b8fc84983969ee335860ce.tar.gz bugzilla-64bd0e0eebc2421ec5b8fc84983969ee335860ce.tar.xz |
Bug 803295: Bump the minimum requirement for DBI to 1.54
r=glob a=LpSolit
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Install/Requirements.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm index 5dbb8344a..7231e8113 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. |