From 7dbfd30d0d2be639fe1fec1c4b99654c2d51a1df Mon Sep 17 00:00:00 2001 From: "Kyle J. McKay" Date: Mon, 1 Mar 2021 10:03:21 -0700 Subject: [PATCH] check-perl-modules.pl: do not require any XML modules Previously either XML::Simple and/or XML::Parser were required with the intent that would allow the explicit README contents to always be validated. As the need for that has been overcome by events (the Markdown module now does its own internal validation without the need for either of those modules), remove the checks for the XML Perl modules since they're no longer of any interest. Signed-off-by: Kyle J. McKay --- toolbox/check-perl-modules.pl | 8 -------- 1 file changed, 8 deletions(-) diff --git a/toolbox/check-perl-modules.pl b/toolbox/check-perl-modules.pl index 35df8ef..4fa6503 100755 --- a/toolbox/check-perl-modules.pl +++ b/toolbox/check-perl-modules.pl @@ -43,14 +43,6 @@ eval {require Digest::SHA::PurePerl; 1} or print STDERR "One of the Perl modules Digest::SHA or Digest::SHA1 or " . "Digest::SHA::PurePerl must be available\n"; -# For XML, either of XML::Simple or XML::Parser will do - -eval {require XML::Simple; 1} || -eval {require XML::Parser; 1} or -++$errors, -print STDERR "One of the Perl modules XML::Simple or " -. "XML::Parser must be available\n"; - my @modules = qw( CGI CGI::Carp -- 2.11.4.GIT