I will provide my usual free advice (consider the amount you paid for the advice ;-D ) on having your applications rely on the system version of Perl: Don't do it! Instead, if at all possible, include Perl in your application stack (create your own install). At the very least, use the OS's packaging manager to install additional modules if at all possible.

The OS's perl is for its own environment. If your OS updates its perl installation for its needs, you risk breaking your application. If you update your OS's perl install for your application, you risk breaking your OS. I am not sure which one is worse. Additionally, you no longer have control over your application's environment -- it can change underneath you, causing "it worked yesterday" errors.

There are very few cases where I target an application against the OS's perl install, and those are usually system utilities built using the OS's default platform.

--MidLifeXis


In reply to Re: perl sdl module install fail by MidLifeXis
in thread perl sdl module install fail by freakcoco

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.