From: mkanat%bugzilla.org <> Date: Fri, 2 Jan 2009 23:31:22 +0000 (+0000) Subject: Bug 471060: The mod_perl CGI requirement isn't necessary anymore X-Git-Tag: bugzilla-3.3.1~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3fcb8c1e072a420b64f229cf687026fcde5256a6;p=thirdparty%2Fbugzilla.git Bug 471060: The mod_perl CGI requirement isn't necessary anymore Patch By Max Kanat-Alexander r=LpSolit, a=LpSolit --- diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm index 2630a41046..5647181cc7 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;