Different versions of Perl are often not binary compatible so compiling a module for one version doesn't give you something that will work with another. Usually Perl stays binary compatible between minor versions. And usually you have the option of building a new major version of Perl to have binary compatibility with the previous major version -- but doing so usually involves not getting some of the new features of the new major version.

ActiveState really wanted some of the new features of Perl 5.6.0 so they didn't build it to be binary compatible with Perl 5.005_0x.

Now, modules that don't include C code should be installable on any version of Perl. If there are PPM packages of such modules in a 5.005 PPM archive, then you should still be able to use those under 5.6.0. [ Update: Unless PPM isn't smart enough to know the difference -- which appears to be the case (according to Guildenstern's testing). ]

        - tye (but my friends call me "Tye")

In reply to Re: A Small Question. by tye
in thread A Small Question. by Billy

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.