http://qs321.pair.com?node_id=74765


in reply to using newer modules

Correct me if I'm wrong but Perl will use the first module it finds (for a match) in @INC. When you use lib;, the directory is pushed onto the array @INC, so when it comes time to search for the module, the old CGI is found first. You'll want to use unshift to add the directory to @INC.

Update: I was wrong.

AgentM Systems nor Nasca Enterprises nor Bone::Easy nor Macperl is responsible for the comments made by AgentM. Remember, you can build any logical system with NOR.

Replies are listed 'Best First'.
Re: Re: using newer modules
by suaveant (Parson) on Apr 23, 2001 at 20:49 UTC
    No, Camel book says use lib is almost the same as
    BEGIN { unshift @INC, LIST; }
    except it supports platform specific stuff... so it should work.
                    - Ant