]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 314470: Require Perl 5.8
authormkanat%kerio.com <>
Thu, 2 Mar 2006 07:06:01 +0000 (07:06 +0000)
committermkanat%kerio.com <>
Thu, 2 Mar 2006 07:06:01 +0000 (07:06 +0000)
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=justdave, a=justdave

checksetup.pl
docs/xml/Bugzilla-Guide.xml
t/001compile.t

index 4c3997ddb9f29b6aae76cbbefe7fb3bee6ace907..5d3a2e540f51704a7e7ce4456a19caa3650a2539 100755 (executable)
@@ -130,7 +130,7 @@ BEGIN {
     if ($^O =~ /MSWin32/i) {
         require 5.008001; # for CGI 2.93 or higher
     }
-    require 5.006_001;
+    require 5.008;
     use File::Basename;
     chdir dirname($0);
 }
index 58a75448e292060b845b4f281b3397546ca847d4..89b367cd8bfa3bafe1159a95e37884be2a2594b0 100644 (file)
@@ -44,7 +44,7 @@
 <!-- For minimum versions -->
 <!ENTITY min-mysql-ver "4.0.14">
 <!ENTITY min-pg-ver "7.3.x">
-<!ENTITY min-perl-ver "5.6.1">
+<!ENTITY min-perl-ver "5.8.0">
 <!ENTITY min-perl-ver-win "5.8.1">
 <!ENTITY min-template-ver "2.08">
 <!ENTITY min-file-temp-ver "any">
index 5ea849ac18273f4046dcfb81e5eaa9248ce227cc..ebfc4a5d8620199eb91e2dd34ebb222f2da42c08 100644 (file)
@@ -36,11 +36,11 @@ use Test::More tests => scalar(@Support::Files::testitems);
 use DBI;
 my @DBI_drivers = DBI->available_drivers;
 
-# Bugzilla requires Perl 5.6.1 now.  Checksetup will tell you this if you run it, but
+# Bugzilla requires Perl 5.8.0 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_001;
+# slip in a compile-time failure if it's missing here so a tinderbox on < 5.8 won't
+# pass and mistakenly let people think Bugzilla works on any perl below 5.8.
+require 5.008;
 
 # Capture the TESTOUT from Test::More or Test::Builder for printing errors.
 # This will handle verbosity for us automatically.