same module with different pragmas

2002-09-23 Thread pilsl
Today I finally resolved a strange error that was bugging me for days now. In the sets of applications that runs under mod_perl on our webserver we need the same modules twice, but with different pragmas. app1: use module qw(standard pragma1); app2: use module qw(standard pragma2); now, of

Re: same module with different pragmas

2002-09-23 Thread Perrin Harkins
[EMAIL PROTECTED] wrote: In the sets of applications that runs under mod_perl on our webserver we need the same modules twice, but with different pragmas. app1: use module qw(standard pragma1); app2: use module qw(standard pragma2); now, of course - whichever application is needed

RE: same module with different pragmas

2002-09-23 Thread Andrew G. Hammond
module with different pragmas [EMAIL PROTECTED] wrote: In the sets of applications that runs under mod_perl on our webserver we need the same modules twice, but with different pragmas. app1: use module qw(standard pragma1); app2: use module qw(standard pragma2); now, of course - whichever

Re: same module with different pragmas

2002-09-23 Thread Rick Myers
On Sep 23, 2002 at 17:05:07 -0400, Perrin Harkins wrote: [EMAIL PROTECTED] wrote: In the sets of applications that runs under mod_perl on our webserver we need the same modules twice, but with different pragmas. app1: use module qw(standard pragma1); app2: use module qw(standard