]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 803295: Bump the minimum requirement for DBI to 1.54
authorFrédéric Buclin <LpSolit@gmail.com>
Fri, 19 Oct 2012 09:56:41 +0000 (11:56 +0200)
committerFrédéric Buclin <LpSolit@gmail.com>
Fri, 19 Oct 2012 09:56:41 +0000 (11:56 +0200)
r=glob a=LpSolit

Bugzilla/Install/Requirements.pm

index c5abf1986a472862e087608aee7f173d5543a683..12cceedb412b9b60654b0e8ee71aec20a1397adf 100644 (file)
@@ -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.