You can't just
retain the necessary modules... Major versions of perl are all binary incompatible. If these modules rely on XS, thus have a portion in compiled C, they'll have to be reinstalled for the new version of Perl.
As for issues... The major issue I can think of is related to UTF8. Indeed from 5.6.0 on, perl has native UTF-8 support. Sometimes perl will convert between what it thinks is ISO-Latin-1 and UTF-8, without you asking for it, or even where it is not what you want. It can, and will, happen when you concatenate normal strings, entered in Perl, with the output of XML::Parser.
You'll just have to test it. Make a new installation of perl, retaining the old one, next make a copy of your script that'll run under the new perl, and test it. Test it, test it, test it! All while keeping the old copy in place, of course, and making sure it'll chug along as before.
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.