Re: MSA rewrite project

2001-03-13 Thread Philip Newton

Jonathan Peterson wrote:
 2. including the required modules as simple .pm files to be 
 uploaded to the same directory as the script file. (i.e. no
 proper 'perl Makefile.PL;make;make test;make install).
 
 Assuming that 2 actually works, which is should in many but 
 not all cases.

Generally, @INC contains '.', so it should work (though remember that
Net::SMTP has to go into ./Net/SMTP.pm and not ./SMTP.pm or ./Net::SMTP.pm).
Otherwise, use lib '.' should be your friend.

Cheers,
Philip
-- 
Philip Newton [EMAIL PROTECTED]
All opinions are my own, not my employer's.
If you're not part of the solution, you're part of the precipitate.



Re: MSA rewrite project

2001-03-13 Thread Roger Burton West

On or about Tue, Mar 13, 2001 at 05:34:03PM +0100, Philip Newton typed:

Generally, @INC contains '.', so it should work (though remember that
Net::SMTP has to go into ./Net/SMTP.pm and not ./SMTP.pm or ./Net::SMTP.pm).
Otherwise, use lib '.' should be your friend.

I believe IIS does horribly evil things to the current execution
directory.

Roger