Re: Ignoring unwanted "use"

2006-04-21 Thread Chris Wagner
At 09:58 AM 4/21/2006 -0700, David Ressler wrote: >I have a library of Perl routines in which "use Authen::SASL;" appears and is >used in some, but not all, of my various websites. In those sites where I don't >use it, Authen is not installed, but the script fails in these sites because >"use" is e

RE: Ignoring unwanted "use"

2006-04-21 Thread Suresh Govindachar
David Ressler asks: > I have a library of Perl routines in which "use Authen::SASL;" > appears and is used in some, but not all, of my various > websites. In those sites where I don't use it, Authen is not > installed, but the script fails in these sites because "use" is > evalua

Re: Ignoring unwanted "use"

2006-04-21 Thread Octavian Rasnita
Have you tried "require" instead of "use"? Teddy - Original Message - From: "David Ressler" <[EMAIL PROTECTED]> To: "Perl List" Sent: Friday, April 21, 2006 7:58 PM Subject: Ignoring unwanted "use" > I have a library of Perl

Ignoring unwanted "use"

2006-04-21 Thread David Ressler
I have a library of Perl routines in which "use Authen::SASL;" appears and is used in some, but not all, of my various websites. In those sites where I don't use it, Authen is not installed, but the script fails in these sites because "use" is evaluated at compile time, not run time. What's the be