Commit 64bd0e0e authored by Frédéric Buclin's avatar Frédéric Buclin

Bug 803295: Bump the minimum requirement for DBI to 1.54

r=glob a=LpSolit
parent fc443eda
......@@ -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.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment