[PATCH] require Data::Dumper::Simple
[email protected] (Moritz Lenz) Mon, 10 Aug 2009 00:21:32 +0200
| Newsgroups | perl.dbdi.dev |
|---|---|
| Message-ID | <[email protected]> |
--------------010901040408060803070903
Content-Transfer-Encoding: 7bit
Content-Type: text/plain; charset=ISO-8859-1
Hi,
java2perl6 uses Data::Dumper::Simple (at least for the tests, it seems)
but doesn't note it as a prerequisite. This patch adds it to Makefile.PL.
Cheers,
Moritz
--------------010901040408060803070903
Content-Transfer-Encoding: 7bit
Content-Type: text/x-diff;
name="require-ddds.patch"
Content-Disposition: inline;
filename="require-ddds.patch"
Index: Makefile.PL
===================================================================
--- Makefile.PL (revision 78)
+++ Makefile.PL (working copy)
@@ -13,6 +13,7 @@
PREREQ_PM => {
Template => '2.0',
Parse::RecDescent => '1.0',
+ Data::Dumper::Simple => 0,
}, # e.g., Module::Name => 1.1
EXE_FILES => [ $java2perl6 ],
ABSTRACT_FROM => 'lib/Java/Javap.pm', # retrieve abstract from module
--------------010901040408060803070903--