aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2012-10-19 11:56:41 +0200
committerFrédéric Buclin <LpSolit@gmail.com>2012-10-19 11:56:41 +0200
commitcc45025323ca7415e0f76cf310ba12354c529fe8 (patch)
tree2e6d250c5279978bbaaf39f1223936b1d5918a93
parentBug 531243: Bugzilla crashes on show_bug if it's hit while a custom field is ... (diff)
downloadbugzilla-cc45025323ca7415e0f76cf310ba12354c529fe8.tar.gz
bugzilla-cc45025323ca7415e0f76cf310ba12354c529fe8.tar.bz2
bugzilla-cc45025323ca7415e0f76cf310ba12354c529fe8.zip
Bug 803295: Bump the minimum requirement for DBI to 1.54
r=glob a=LpSolit
-rw-r--r--Bugzilla/Install/Requirements.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm
index c5abf1986..12cceedb4 100644
--- a/Bugzilla/Install/Requirements.pm
+++ b/Bugzilla/Install/Requirements.pm
@@ -114,10 +114,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.