]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 282509: Bugzilla now requires perl 5.6.1
authormkanat%kerio.com <>
Thu, 17 Feb 2005 18:16:02 +0000 (18:16 +0000)
committermkanat%kerio.com <>
Thu, 17 Feb 2005 18:16:02 +0000 (18:16 +0000)
Patch By Max Kanat-Alexander <mkanat@kerio.com> r,a=justdave

checksetup.pl
t/001compile.t

index 953223b6cb17e0d72e430ae13215f4e9be34455b..c99beb3a56f73d17d1892f89bb028e144f755676 100755 (executable)
@@ -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);
 }
index ee46a5a85ddafe18be9d1700b8aa897134824310..30372484828686d58ebb28e07f765c34300a7173 100644 (file)
@@ -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.