Subject: | Missing prerequisites in Makefile.PL |
Pod::SAX is required by this module, but the formatting of the prerequisites in the Makefile.PL isn't formatted correctly. This is a dumb patch that should resolve that.
--- Makefile.PL 2002-05-19 07:09:00.000000000 -0700
+++ /tmp/Makefile.PL-new 2003-10-31 11:37:29.000000000 -0800
@@ -4,7 +4,7 @@
WriteMakefile(
'NAME' => 'Apache::AxKit::Provider::PodSAX',
'VERSION_FROM' => 'PodSAX.pm', # finds $VERSION
- 'PREREQ_PM' => {Pod::SAX}, # e.g., Module::Name => 1.1
+ 'PREREQ_PM' => {Pod::SAX => 0}, # e.g., Module::Name => 1.1
($] >= 5.005 ? ## Add these new keywords supported since 5.005
(ABSTRACT_FROM => 'PodSAX.pm', # retrieve abstract from module
AUTHOR => 'Kip Hampton <khampton#totalcinema.com>') : ()),