summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormkanat%kerio.com <>2006-03-02 08:06:01 +0100
committermkanat%kerio.com <>2006-03-02 08:06:01 +0100
commit8de64c701e34791c6a0b22c9ffdef71a8c1a759b (patch)
treefb8a316756b2609b0b35511ce0ef17389549bdce
parent2ba411e9446f9d0ba1cd1e0f555387d346db5001 (diff)
downloadbugzilla-8de64c701e34791c6a0b22c9ffdef71a8c1a759b.tar.gz
bugzilla-8de64c701e34791c6a0b22c9ffdef71a8c1a759b.tar.xz
Bug 314470: Require Perl 5.8
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=justdave, a=justdave
-rwxr-xr-xchecksetup.pl2
-rw-r--r--docs/xml/Bugzilla-Guide.xml2
-rw-r--r--t/001compile.t8
3 files changed, 6 insertions, 6 deletions
diff --git a/checksetup.pl b/checksetup.pl
index 4c3997ddb..5d3a2e540 100755
--- a/checksetup.pl
+++ b/checksetup.pl
@@ -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);
}
diff --git a/docs/xml/Bugzilla-Guide.xml b/docs/xml/Bugzilla-Guide.xml
index 58a75448e..89b367cd8 100644
--- a/docs/xml/Bugzilla-Guide.xml
+++ b/docs/xml/Bugzilla-Guide.xml
@@ -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">
diff --git a/t/001compile.t b/t/001compile.t
index 5ea849ac1..ebfc4a5d8 100644
--- a/t/001compile.t
+++ b/t/001compile.t
@@ -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.