[EMAIL PROTECTED] wrote:
Hello, Garrett Rooney! Thanks for uploading your works to CPAN.
I noticed that the test suite seem to fail without these modules:
SVN::Log
As such, adding the prerequisite module(s) to 'PREREQ_PM' in your Makefile.PL should solve this problem. For example:
WriteMakefile( AUTHOR => 'Garrett Rooney ([EMAIL PROTECTED])', ... # other information PREREQ_PM => { 'SVN::Log' => '0', # or a minimum workable version } );
If you are interested in making a more flexible Makefile.PL that can probe for missing dependencies and install them, ExtUtils::AutoInstall at <http://search.cpan.org/dist/ExtUtils-AutoInstall/> may be worth a look.
Thanks! :-)
Hi,
I'm not sure how you're getting this far without having hit some kind of error... This module doesn't use ExtUtils::MakeMaker, the Makefile.PL is a passthrough to Build.PL, which does depend on SVN::Log (see it's 'requires' line). You should have gotten an error when running Build.PL. Perhaps your test script is not noticing the error? I do notice that a Build script is still produced in this case, but there is clearly an error when Build.PL is run without SVN::Log installed.
-garrett
