diff options
author | wurblzap%gmail.com <> | 2006-08-20 02:20:23 +0200 |
---|---|---|
committer | wurblzap%gmail.com <> | 2006-08-20 02:20:23 +0200 |
commit | 0ee4621e7828a205189368aa9b8a515574d9c030 (patch) | |
tree | 93caacf40fc87a27e224e8fefa6b7284e686e918 /Bugzilla/Install | |
parent | 79c7d0e961d9adf2c3a0459594745afb41b19e4c (diff) | |
download | bugzilla-0ee4621e7828a205189368aa9b8a515574d9c030.tar.gz bugzilla-0ee4621e7828a205189368aa9b8a515574d9c030.tar.xz |
Bug 224577: Bugzilla could use a web services interface.
Patch by Marc Schumann <wurblzap@gmail.com>;
r=mkanat; a=myk
Diffstat (limited to 'Bugzilla/Install')
-rw-r--r-- | Bugzilla/Install/Requirements.pm | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm index e521f6e11..3a27bb2e4 100644 --- a/Bugzilla/Install/Requirements.pm +++ b/Bugzilla/Install/Requirements.pm @@ -13,6 +13,7 @@ # The Original Code is the Bugzilla Bug Tracking System. # # Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org> +# Marc Schumann <wurblzap@gmail.com> package Bugzilla::Install::Requirements; @@ -117,6 +118,10 @@ use constant OPTIONAL_MODULES => [ name => 'Net::LDAP', version => 0 }, + { + name => 'SOAP::Lite', + version => 0 + }, ]; # These are only required if you want to use Bugzilla with @@ -252,6 +257,15 @@ sub check_requirements { " " . install_command("Image::Magick") . "\n\n"; } + # Web Services + if (!$have_mod{'SOAP::Lite'}) { + print "If you want your Bugzilla installation to be accessible\n", + "via its Web Service interface, you will need to install\n", + "the SOAP::Lite module by running (as $root):\n\n"; + print " SOAP::Lite: " . + install_command("SOAP::Lite") . "\n\n"; + } + # Graphical Reports if (!$have_mod{'GD'} || !$have_mod{'GD::Graph'} || !$have_mod{'GD::Text::Align'} |