in reply to Re: How to create installable modules ?
in thread How to create installable modules ?

Hi Brian, Thanks for your reply. I have some more doubts. I have specified all the prerequisite modules in PREREQ_PM like this. PREREQ_PM => { XML::Writer => 0.531, XML::Sablotron => 0.98 } While doing "perl Makefile.pl" it is giving a warning that these modules are not installed . Is these modules will automatilcally installed? Other thing is that I need to check BDBXML is present in the system . Thanks and regards
  • Comment on Re^2: How to create installable modules ?

Replies are listed 'Best First'.
Re^3: How to create installable modules ?
by brian_d_foy (Abbot) on Jan 11, 2006 at 19:50 UTC

    If you install the tools with CPAN.pm, my cpan script, or CPAN++, they can automatically handle the dependencies for you. Simply running the Makefile.PL script won't do that for you.

    --
    brian d foy <brian@stonehenge.com>
    Subscribe to The Perl Review
      Hi Brian, So how we install the module through CPAN utility after creating the makefile.pl. Thanks and regards