in reply to Re^5: How can I add 1 hour to the current time
in thread How can I add 1 hour to the current time

Yes. I am using ActivePerl version 5.8.8 build 817. Usually we run Makefile.PL when we download perl module from CPAN. but in this case, this package contains "Build.PL". What can i do for install the DateTime module? Suresh
  • Comment on Re^6: How can I add 1 hour to the current time

Replies are listed 'Best First'.
Re^7: How can I add 1 hour to the current time
by jethro (Monsignor) on Aug 20, 2011 at 12:04 UTC
Re^7: How can I add 1 hour to the current time
by ikegami (Patriarch) on Aug 20, 2011 at 20:45 UTC

    ow, 5.8 is rather old now. Specifically, both 5.8 and 5.10 are no longer supported by the Perl developers. (I don't know ActiveState's policy, though.) Are you tied to that version? You'll probably have fewer problems if you upgraded your Perl.

    Anyway, to install a module using Module::Build,

    perl Build.PL Build Build test Build install

    If you do it manually like this, though, you'll have to install the prereqs yourself too.