summaryrefslogtreecommitdiffstats
path: root/checksetup.pl
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2007-08-09 19:36:07 +0200
committerlpsolit%gmail.com <>2007-08-09 19:36:07 +0200
commit1226f7f22e4a706b1755d359c07736575ed3af2b (patch)
treedaf80a17edb8e5a3edfe40ae3ee89cadfe115210 /checksetup.pl
parent1e87283250635a69e5d855d1bd5d075253796e88 (diff)
downloadbugzilla-1226f7f22e4a706b1755d359c07736575ed3af2b.tar.gz
bugzilla-1226f7f22e4a706b1755d359c07736575ed3af2b.tar.xz
Bug 361149: Bugzilla now requires Perl 5.8.1 or newer (Perl 5.8.0 throws warnings about deprecated pseudo-hashes) - Patch by Frédéric Buclin <LpSolit@gmail.com> r/a=mkanat
Diffstat (limited to 'checksetup.pl')
-rwxr-xr-xchecksetup.pl4
1 files changed, 1 insertions, 3 deletions
diff --git a/checksetup.pl b/checksetup.pl
index 6d2037b9e..81d4a819f 100755
--- a/checksetup.pl
+++ b/checksetup.pl
@@ -43,7 +43,7 @@
######################################################################
use strict;
-use 5.008;
+use 5.008001;
use File::Basename;
use Getopt::Long qw(:config bundling);
use Pod::Usage;
@@ -56,8 +56,6 @@ use Bugzilla::Constants;
use Bugzilla::Install::Requirements;
use Bugzilla::Install::Util qw(install_string get_version_and_os);
-require 5.008001 if ON_WINDOWS; # for CGI 2.93 or higher
-
######################################################################
# Live Code
######################################################################