Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: 'use lib' versus '-I'

by Steve_p (Priest)
on Nov 30, 2004 at 21:34 UTC ( [id://411301]=note: print w/replies, xml ) Need Help??


in reply to 'use lib' versus '-I'

Just to get things clear, neither use lib nor -I load modules. Only use and require do that.

Both use lib and -I control @INC. According to perlrun, -I prepends directories to @INC. use lib also adds directories to the beginning of @INC, but also checks for the existance of an $archname/auto subdirectory of each directory passed to use lib. If an $archname/auto subdirectory exists, $archname/auto and $archname subdirectories are also added to @INC before the directory passed to use lib.

mod_perl is a different animal when running scripts. It has been pointed out above the mod_perl does not look at the shebang line. That is correct. You'll need to either use lib in your handler module or in your startup script to use modules installed outside of @INC.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://411301]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (5)
As of 2024-04-23 19:42 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found