It's a little tedious to track down why those variables are uninitialized, but I'd think it's because still other modules are missing from the PAR package....  The author seems to have gone from one extreme to the other: in earlier releases, there was only one big Date/Manip.pm file, while the current release comes with around 940 individual .pm files :)  Not all of them are being loaded in every case...

When I run your script under strace (my way of dependency scanning), it reveals the following modules effectively being used:

$ strace -eopen ./817045.pl 2>&1 | grep 'Date/Manip.*= [0-9]\+$' open("./Date/Manip/Lang/english.pm", O_RDONLY) = 6 open("./Date/Manip.pm", O_RDONLY) = 8 open("./Date/Manip/Date.pm", O_RDONLY) = 9 open("./Date/Manip/Obj.pm", O_RDONLY) = 10 open("./Date/Manip/Base.pm", O_RDONLY) = 11 open("./Date/Manip/Lang/index.pm", O_RDONLY) = 11 open("./Date/Manip/TZ.pm", O_RDONLY) = 11 open("./Date/Manip/Zones.pm", O_RDONLY) = 11 open("./Date/Manip/Delta.pm", O_RDONLY) = 8 open("./Date/Manip/Recur.pm", O_RDONLY) = 8 open("./Date/Manip/TZ/euberl00.pm", O_RDONLY) = 4 open("./Date/Manip/TZ/etgmt00.pm", O_RDONLY) = 4

You probably need to make sure those are part of the PAR package.  The TZ/* ones may be different in your case, so you might want to run the above strace command yourself... (in case you're on Linux/Unix)


In reply to Re^3: PAR::packer with Date::Manip gives error by almut
in thread PAR::packer with Date::Manip gives error by gri6507

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.