diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2013-09-12 19:00:07 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2013-09-12 19:00:07 +0200 |
commit | 0ced6fe053d60471c8b768c95e45e640c32ce251 (patch) | |
tree | e7ec1897a99ccf4d97487bc24857245419eb1370 | |
parent | 60b56191bec26fa58539167320e25a813f188a64 (diff) | |
download | bugzilla-0ced6fe053d60471c8b768c95e45e640c32ce251.tar.gz bugzilla-0ced6fe053d60471c8b768c95e45e640c32ce251.tar.xz |
Bug 911509: SOAP::Lite 1.0 no longer includes XMLRPC::Lite
r=dkl a=glob
-rw-r--r-- | Bugzilla/Install/Requirements.pm | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm index 0d02904e9..ce6b2bc78 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', |