|
From: <ja...@op...> - 2001-01-26 20:42:06
|
Hey,
So it turns out you need to instruct MakeMaker what your prerequisites
are for it to auto fetch packages with CPAN. Luckily, it's easy, just
add a PREREQ_PM line:
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Class::ObjectTemplate::DB',
VERSION_FROM => 'DB.pm',
PREREQ_PM => { 'Class::ObjectTemplate' => '0.2'}
);
These changes will wend their way into CPAN over the next few
days. I've also got them at:
http://download.sourceforge.net/openinformatics/Class-ObjectTemplate-0.4.tar.gz
http://download.sourceforge.net/openinformatics/Class-ObjectTemplate-DB-0.24.tar.gz
There are no new code changes, so *don't* upgrade (just an FYI) ..
jas.
|