Re: Deep recursion problem (Namespace?) modperl 1.21 with perl 5.00503

1999-11-14 Thread Ronald F. Lens
I did some further testing today. I first tried the CVS version of modperl of last night, no difference. But when I tried it with perl5.005_62 it worked like a charm. It still has me baffled though, I'm looking more closely at the changes between perl 5.005_03 and perl5.005_62. On Wed, 10 Nov 1

Re: Deep recursion problem (Namespace?) modperl 1.21 with perl 5.00503

1999-11-12 Thread Tim Tompkins
November 10, 1999 8:00 AM Subject: Deep recursion problem (Namespace?) modperl 1.21 with perl 5.00503 > Hi. > > I'm running into a strange problem with the combination Apache 1.3.9, modperl > 1.21 and perl 5.005.03. This problem doesn't occur with perl 5.0

Re: Deep recursion problem (Namespace?) modperl 1.21 with perl 5.00503

1999-11-10 Thread Eric L. Brine
> I have 2 modules : > - > package ThingA; > > use ThingB; > > sub new > > sub ThingB { ThingA::ThingB->new( @_ ) } > > --- > > package ThingB; SHOULD BE: package ThingA::ThingB; (see below for reason) > @ThingA::ThingB::ISA = qw(ThingA); > > sub new { >

Deep recursion problem (Namespace?) modperl 1.21 with perl 5.00503

1999-11-10 Thread Ronald F. Lens
Hi. I'm running into a strange problem with the combination Apache 1.3.9, modperl 1.21 and perl 5.005.03. This problem doesn't occur with perl 5.004 with modperl 1.14 and apache 1.3.1. I have 2 modules : - package ThingA; use ThingB; sub new sub ThingB { ThingA::ThingB->n