Subject: | Missing dependency for XML::Parser::Lite |
XML::RSS::Parser::Lite is missing an dependency for XML::Parser::Lite.
The attached patch should (ie. not tested) fix it.
Subject: | missing-dependency.patch |
--- Makefile.PL.orig 2010-11-21 00:38:36.000000000 +0100
+++ Makefile.PL 2010-11-21 00:44:46.000000000 +0100
@@ -2,5 +2,8 @@
WriteMakefile(
NAME => 'XML::RSS::Parser::Lite',
- VERSION_FROM => 'lib/XML/RSS/Parser/Lite.pm'
-);
\ No newline at end of file
+ VERSION_FROM => 'lib/XML/RSS/Parser/Lite.pm',
+ PREREQ_PM => {
+ 'XML::Parser::Lite' => 0,
+ }
+);