PerlMonks now uses this:

use lib "/home/onthe/range"; # For when this is compiled lib->import("/home/onthe/range"); # For subsequent hits
The first is needed for if you have any 'use' statements happening at compile-time of your main script. The second is needed if you have any use/require statements happening at run time (and are using mod_perl).

We used to have a config file that set this up seperately for all of our scripts but it just disappeared one day (or I'd tell what it did to provide you another alternative). (And before that we had a bunch of 'use lib' statements everywhere we did use/require at run time.)

Note: The terms "compile time" and "run time" are a bit ambiguous. Sometimes they are used to refer to the per-statement compile vs. run times. Sometimes they are used to distinguish between before or after when the main script starts running "regular" code. I don't usually have difficulty telling which is meant so I'll just leave it at that. (:

                - tye

In reply to Re: PERL5LIB with Apache (PM's) by tye
in thread PERL5LIB with Apache 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.