RE: XML::Parse segmentation fault

2000-10-10 Thread Matt Sergeant
On Tue, 10 Oct 2000, Geoffrey Young wrote: > > On Mon, 9 Oct 2000, Herrington, Jack wrote: > > > > > Is there some inherint problem with XML::Parser and mod_perl? > > > > Yes. You need to recompile Apache with RULE_EXPAT=no. > > according to Changes, this should be automatic as of 1.23... Of

RE: XML::Parse segmentation fault

2000-10-10 Thread Geoffrey Young
> -Original Message- > From: Matt Sergeant [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, October 10, 2000 3:20 AM > To: Herrington, Jack > Cc: '[EMAIL PROTECTED]' > Subject: Re: XML::Parse segmentation fault > > > On Mon, 9 Oct 2000, Herrington, Jack

Re: XML::Parse segmentation fault

2000-10-10 Thread Matt Sergeant
On Mon, 9 Oct 2000, Herrington, Jack wrote: > Is there some inherint problem with XML::Parser and mod_perl? Yes. You need to recompile Apache with RULE_EXPAT=no. I'm hoping that now that expat has a standard distribution that the Apache team will be proactive in fixing this bug. -- /||

XML::Parse segmentation fault

2000-10-09 Thread Herrington, Jack
This code works as a perl script executed off the command line: use XML::Parser; my $parser = new XML::Parser(); $parser->parse( "" ); This code fails with a segmentation fault when called from mod_perl: package CBL::mod_perl::test1; use strict;