diff options
author | mkanat%bugzilla.org <> | 2009-01-03 00:31:22 +0100 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2009-01-03 00:31:22 +0100 |
commit | 3fcb8c1e072a420b64f229cf687026fcde5256a6 (patch) | |
tree | f02c5d244f03fc228fc19ac45a591d694194c46b /Bugzilla | |
parent | 2dea5418e3b4f7a5ae50462730171eef58f9b766 (diff) | |
download | bugzilla-3fcb8c1e072a420b64f229cf687026fcde5256a6.tar.gz bugzilla-3fcb8c1e072a420b64f229cf687026fcde5256a6.tar.xz |
Bug 471060: The mod_perl CGI requirement isn't necessary anymore
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=LpSolit
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Install/Requirements.pm | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm index 2630a4104..5647181cc 100644 --- a/Bugzilla/Install/Requirements.pm +++ b/Bugzilla/Install/Requirements.pm @@ -259,19 +259,6 @@ sub OPTIONAL_MODULES { }, ); - # Even very new releases of perl (5.8.5) don't come with this version, - # so I didn't want to make it a general requirement just for - # running under mod_cgi. - # If Perl 5.10 is installed, then CGI 3.33 is already required. So this - # check is only relevant with Perl 5.8.x. - my $perl_ver = sprintf('%vd', $^V); - if (vers_cmp($perl_ver, '5.10') < 0) { - push(@modules, { package => 'CGI.pm', - module => 'CGI', - version => '3.11', - feature => 'mod_perl' }); - } - my $all_modules = _get_extension_requirements( 'OPTIONAL_MODULES', \@modules); return $all_modules; |