One issue will be that any XS modules will also need to be reinstalled, either using PPM, or the more traditional way. Perl 5.10 was not byte-compatible with 5.8.x.

That's probably the most significant issue; you will need to reinstall, for example, DBI, DBD::whatever, List::MoreUtils, and any other non-core modules that you might be using that happen to rely on XS code.

Of course you really should simulate your environment on another machine (or at least a virtual machine), install 5.8.9 and all the modules you depend on, then install 5.10, reinstall the non-core modules, and test, test, test. Only then ought you to upgrade production.

You may also want to check the CPAN test matrix for any non-core modules you use to verify that they continued passing their test suite on both 5.8.9 and 5.10. By now (many years later) any of the few issues there may have been have probably been worked out, but it's worth checking. And check the perldelta for 5.10, paying particular attention to Incompatible Changes.


Dave


In reply to Re: install activestate 5.10 over 5.8.9 by davido
in thread install activestate 5.10 over 5.8.9 by Anonymous Monk

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.