From: Frédéric Buclin Date: Thu, 12 Sep 2013 17:01:25 +0000 (+0200) Subject: Bug 911509: SOAP::Lite 1.0 no longer includes XMLRPC::Lite X-Git-Tag: bugzilla-4.4.1~24 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ad0c8c819b87d29158c53b2b40ec1075de217b40;p=thirdparty%2Fbugzilla.git Bug 911509: SOAP::Lite 1.0 no longer includes XMLRPC::Lite r=dkl a=glob --- diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm index 531fc40847..82f3403946 100644 --- a/Bugzilla/Install/Requirements.pm +++ b/Bugzilla/Install/Requirements.pm @@ -272,6 +272,8 @@ sub OPTIONAL_MODULES { version => 0, feature => ['auth_radius'], }, + # XXX - Once we require XMLRPC::Lite 0.717 or higher, we can + # remove SOAP::Lite from the list. { package => 'SOAP-Lite', module => 'SOAP::Lite', @@ -280,6 +282,14 @@ sub OPTIONAL_MODULES { version => '0.712', feature => ['xmlrpc'], }, + # Since SOAP::Lite 1.0, XMLRPC::Lite is no longer included + # and so it must be checked separately. + { + package => 'XMLRPC-Lite', + module => 'XMLRPC::Lite', + version => '0.712', + feature => ['xmlrpc'], + }, { package => 'JSON-RPC', module => 'JSON::RPC',