[mp2] apache2::reload causing segfault?

2005-06-27 Thread Douglas Riordan
greetings, so i was trying to get a small mp2 method handler working: package My; use strict; use warnings; use base qw(Base); use Apache2::RequestRec(); use Apache2::RequestIO(); use Apache2::Const qw(OK); sub handler : method { my ($self, $r) = @_; $r->content_type("text/plain"); $r->

Re: [mp2] apache2::reload causing segfault?

2005-06-27 Thread Philip M. Gollucci
Douglas Riordan wrote: greetings, so i was trying to get a small mp2 method handler working: package My; use strict; use warnings; use base qw(Base); use Apache2::RequestRec(); use Apache2::RequestIO(); use Apache2::Const qw(OK); sub handler : method { my ($self, $r) = @_; $r->content_typ

Re: [mp2] apache2::reload causing segfault?

2005-06-27 Thread Douglas Riordan
On 6/27/05, Philip M. Gollucci <[EMAIL PROTECTED]> wrote: > Douglas Riordan wrote: > > >greetings, > > > >so i was trying to get a small mp2 method handler working: > > > >package My; > >use strict; > >use warnings; > > > >use base qw(Base); > >use Apache2::RequestRec(); > >use Apache2::RequestIO(

Re: [mp2] apache2::reload causing segfault?

2005-06-27 Thread Philip M. Gollucci
Douglas Riordan wrote: from Apache2::Const's perldoc use Apache2::Const qw(OK); compiles imports the OK constant. use Apache2::Const -compile => qw(OK); only compiles the OK constant in which case i would have to use return Apache2::Const::OK I agree with the perldoc. Whats this coming fro

Re: [mp2] apache2::reload causing segfault?

2005-06-27 Thread Douglas Riordan
On 6/27/05, Philip M. Gollucci <[EMAIL PROTECTED]> wrote: > Douglas Riordan wrote: > > >from Apache2::Const's perldoc > >use Apache2::Const qw(OK); > >compiles imports the OK constant. > > > >use Apache2::Const -compile => qw(OK); > >only compiles the OK constant in which case i would have to use

Re: [mp2] apache2::reload causing segfault?

2005-06-27 Thread Vincent Moneymaker
Douglas Riordan wrote: >On 6/27/05, Philip M. Gollucci <[EMAIL PROTECTED]> wrote: > Douglas Riordan wrote: > > >from Apache2::Const's perldoc > >use Apache2::Const qw(OK); > >compiles imports the OK constant. > > > >use Apache2::Const -compile => qw(OK); > >only compiles the OK constant in which ca

Re: [mp2] apache2::reload causing segfault?

2005-06-27 Thread Douglas Riordan
On 6/27/05, Vincent Moneymaker <[EMAIL PROTECTED]> wrote: > Douglas Riordan wrote: > >On 6/27/05, Philip M. Gollucci <[EMAIL PROTECTED]> wrote: > > Douglas Riordan wrote: > > > > >from Apache2::Const's perldoc > > >use Apache2::Const qw(OK); > > >compiles imports the OK constant. > > > > > >use Apa

Re: [mp2] apache2::reload causing segfault?

2005-06-27 Thread Vincent Moneymaker
Douglas Riordan wrote: >On 6/27/05, Vincent Moneymaker <[EMAIL PROTECTED]> wrote: > Douglas Riordan wrote: > >On 6/27/05, Philip M. Gollucci <[EMAIL PROTECTED]> wrote: > > Douglas Riordan wrote: > > > > >from Apache2::Const's perldoc > > >use Apache2::Const qw(OK); > > >compiles imports the OK co

Re: [mp2] apache2::reload causing segfault?

2005-06-27 Thread Douglas Riordan
On 6/27/05, Vincent Moneymaker <[EMAIL PROTECTED]> wrote: > > Douglas Riordan wrote: > > >On 6/27/05, Vincent Moneymaker <[EMAIL PROTECTED]> wrote: > > Douglas Riordan wrote: > > >On 6/27/05, Philip M. Gollucci <[EMAIL PROTECTED]> wrote: > > > Douglas Riordan wrote: > > > > > > >from Apache2::Con