From 0ee4621e7828a205189368aa9b8a515574d9c030 Mon Sep 17 00:00:00 2001 From: "wurblzap%gmail.com" <> Date: Sun, 20 Aug 2006 00:20:23 +0000 Subject: Bug 224577: Bugzilla could use a web services interface. Patch by Marc Schumann ; r=mkanat; a=myk --- Bugzilla/Install/Requirements.pm | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'Bugzilla/Install/Requirements.pm') 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 +# Marc Schumann 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'} -- cgit v1.2.3-24-g4f1b