From: mkanat%kerio.com <> Date: Thu, 17 Feb 2005 18:16:02 +0000 (+0000) Subject: Bug 282509: Bugzilla now requires perl 5.6.1 X-Git-Tag: bugzilla-2.19.3~291 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9f5bff4524923dfa2f377fbaead0dfd1286f890c;p=thirdparty%2Fbugzilla.git Bug 282509: Bugzilla now requires perl 5.6.1 Patch By Max Kanat-Alexander r,a=justdave --- diff --git a/checksetup.pl b/checksetup.pl index 953223b6cb..c99beb3a56 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -121,7 +121,7 @@ BEGIN { if ($^O =~ /MSWin32/i) { require 5.008001; # for CGI 2.93 or higher } - require 5.006; + require 5.006_001; use File::Basename; chdir dirname($0); } diff --git a/t/001compile.t b/t/001compile.t index ee46a5a85d..3037248482 100644 --- a/t/001compile.t +++ b/t/001compile.t @@ -32,11 +32,11 @@ use Support::Files; use Test::More tests => scalar(@Support::Files::testitems); -# Bugzilla requires Perl 5.6 now. Checksetup will tell you this if you run it, but +# Bugzilla requires Perl 5.6.1 now. Checksetup will tell you this if you run it, but # it tests it in a polite/passive way that won't make it fail at compile time. We'll # slip in a compile-time failure if it's missing here so a tinderbox on 5.00503 won't # pass and mistakenly let people think Bugzilla works on 5.00503 -require 5.006; +require 5.006_001; # Capture the TESTOUT from Test::More or Test::Builder for printing errors. # This will handle verbosity for us automatically.