Signal SEGV at C:/Perl/site/lib/Params/Validate/XS.pm ...

This means that you got an access violation while trying to load/run code that uses Params::Validate. How did you install Params::Validate on the target machine? Note that PPMs compiled for one version of Perl do not work on a different version of Perl.

A quick way to further eliminate other modules coming into play is to look at whether Params::Validate can load on its own:

perl -MParams::Validate -e "print 'ok'"

If that code prints ok, then you have a larger problem as you need to find the real root cause. If the above command line snippet crashes, then at least your installation of Params::Validate is broken and you need to review the installation process you used for the module.


In reply to Re^2: Log rotator in perl by Corion
in thread Log rotator in perl by HariIndianMonk

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.