I removed ActivePerl and reinstalled it.

It's not a matter of a broken Perl installation, so reinstalling won't help here. The problem is that you're using a compiler which that particular ActivePerl build doesn't play nicely with.

The file denoted by 'which cc' is a symlink pointing to the gcc executable; shouldn't that mean perl would use gcc to compile, if it was trying to use cc?

Yes, it does call gcc, but that's exactly the problem, because gcc and Sun's cc are sufficiently incompatible for things to work...

I installed Crypt::CBC with no problem.

The reason this did work is that Crypt::CBC is a pure Perl module. In other words, you don't need a compiler to install it.

According to this Blowfish shouldn't have any prereqs besides Crypt::CBC.

Presumably that's right. However, Crypt::Blowfish itself comprises architecture specific C/XS code, which means you need a working compiler installation to be able to build/install it.

I'm sorry, but unless someone comes up with a novel suggestion, I'm afraid there's not much else you can try, in addition to what I already did mention...


In reply to Re^7: Problem installing perl modules by almut
in thread Problem installing perl modules by kraas

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.