Rereading your post, I realize the original error message you got was "Can't locate Digest/Perl/MD5.pm in @INC".  In other words, you were trying to install the wrong module (i.e. the XS version Digest::MD5) in order to fix that problem...

Anyhow, moritz is right, Digest::MD5 already was a core module with 5.8 installations, and even with the AIX system Perl (just checked on an AIX 6.1 box that shipped with perl-5.8.2).

So, unless you're planning to do further installations of other XS modules in the future, there might be no need to go to the trouble of installing your own Perl, or some such.  All you'd need to do is find out what exactly is trying to load Digest::Perl::MD5, and edit that (plus maybe other occurrences of "Digest::Perl::MD5") to use Digest::MD5 instead.


In reply to Re: Problem in installing the Digest::MD5.pm module by Eliya
in thread Problem in installing the Digest::MD5.pm module by TGhosh

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.