]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 911509: SOAP::Lite 1.0 no longer includes XMLRPC::Lite
authorFrédéric Buclin <LpSolit@gmail.com>
Thu, 12 Sep 2013 17:00:07 +0000 (19:00 +0200)
committerFrédéric Buclin <LpSolit@gmail.com>
Thu, 12 Sep 2013 17:00:07 +0000 (19:00 +0200)
r=dkl a=glob

Bugzilla/Install/Requirements.pm

index 0d02904e940300af9bc78453456dc97d2ee571ae..ce6b2bc78b0ed0cc5536a23e243c414a380476d9 100644 (file)
@@ -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',