diff options
Diffstat (limited to 'Bugzilla/Install')
-rw-r--r-- | Bugzilla/Install/Requirements.pm | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm index 8a46204dc..d7031971c 100644 --- a/Bugzilla/Install/Requirements.pm +++ b/Bugzilla/Install/Requirements.pm @@ -27,6 +27,7 @@ use strict; use base qw(Exporter); our @EXPORT = qw( REQUIRED_MODULES + OPTIONAL_MODULES vers_cmp have_vers @@ -90,6 +91,45 @@ use constant REQUIRED_MODULES => [ }, ]; +use constant OPTIONAL_MODULES => [ + { + name => 'GD', + version => '1.20' + }, + { + name => 'Chart::Base', + version => '1.0' + }, + { + name => 'GD::Graph', + version => 0 + }, + { + name => 'GD::Text::Align', + version => 0 + }, + { + name => 'XML::Twig', + version => 0 + }, + { + name => 'LWP::UserAgent', + version => 0 + }, + { + name => 'PatchReader', + version => '0.9.4' + }, + { + name => 'Image::Magick', + version => 0 + }, + { + name => 'Net::LDAP', + version => 0 + }, +]; + # Remember that you only have to add modules to this hash if their # names are significantly different on ActiveState than on normal perl. # If it's just a difference between "::" and "-" in the name, don't worry |