summaryrefslogtreecommitdiffstats
path: root/docs/makedocs.pl
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2009-07-16 03:16:11 +0200
committerlpsolit%gmail.com <>2009-07-16 03:16:11 +0200
commit8a3a795c12e95481e7dd7b169495ecb5154d120b (patch)
treed96ee5df79f632293cd9c738c7a0fa4f90cb6875 /docs/makedocs.pl
parenta90fb5f05df1d23fd538a24a29f702d90049ffa7 (diff)
downloadbugzilla-8a3a795c12e95481e7dd7b169495ecb5154d120b.tar.gz
bugzilla-8a3a795c12e95481e7dd7b169495ecb5154d120b.tar.xz
Bug 504418: mod_perl CGI requirement no longer newer than base CGI requirement - Patch by Frédéric Buclin <LpSolit@gmail.com> r=mkanat a=LpSolit
Diffstat (limited to 'docs/makedocs.pl')
-rw-r--r--docs/makedocs.pl7
1 files changed, 0 insertions, 7 deletions
diff --git a/docs/makedocs.pl b/docs/makedocs.pl
index 17e6c3331..506fbe61b 100644
--- a/docs/makedocs.pl
+++ b/docs/makedocs.pl
@@ -73,13 +73,6 @@ foreach my $module (@$modules, @$opt_modules)
print ENTITIES '<!ENTITY min-' . $name . '-ver "'.$version.'">' . "\n";
}
-# CGI is a special case, because for Perl versions below 5.10, it has an
-# optional version *and* a required version.
-# We check @opt_modules first, then @modules, and pick the first we get.
-# We'll get the optional one then, if it is given, otherwise the required one.
-my ($cgi_opt) = grep($_->{module} eq 'CGI', @$opt_modules, @$modules);
-print ENTITIES '<!ENTITY min-mp-cgi-ver "' . $cgi_opt->{version} . '">' . "\n";
-
print ENTITIES "\n <!-- Database Versions --> \n";
my $db_modules = DB_MODULE;