From: Jason Stephenson Date: Fri, 9 Nov 2012 20:06:04 +0000 (-0500) Subject: Stop requiring unneeded/absent RPC::XML::Method X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=8cfad95dac348c1ae32477c3e9c3832adaeaaa8e;p=evergreen%2Fpines.git Stop requiring unneeded/absent RPC::XML::Method It's not a thing in recent versions of RPC::XML Signed-off-by: Jason Stephenson --- diff --git a/Open-ILS/src/perlmods/Build.PL b/Open-ILS/src/perlmods/Build.PL index ead859dde9..c78af11896 100644 --- a/Open-ILS/src/perlmods/Build.PL +++ b/Open-ILS/src/perlmods/Build.PL @@ -68,7 +68,6 @@ my $build = Module::Build->new( 'POSIX' => '0', 'RPC::XML' => '0', 'RPC::XML::Client' => '0', - 'RPC::XML::Method' => '0', 'RPC::XML::Parser' => '0', 'RPC::XML::Procedure' => '0', 'Safe' => '0', diff --git a/Open-ILS/src/perlmods/lib/OpenILS/WWW/XMLRPCGateway.pm b/Open-ILS/src/perlmods/lib/OpenILS/WWW/XMLRPCGateway.pm index 9e4a4c1875..b159fe44aa 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/WWW/XMLRPCGateway.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/WWW/XMLRPCGateway.pm @@ -20,7 +20,6 @@ use OpenSRF::Utils::SettingsClient; use RPC::XML qw/smart_encode/; use RPC::XML::Parser; -use RPC::XML::Method; use RPC::XML::Procedure; $RPC::XML::ENCODING = 'utf-8';