[mp2] can't make or make test mod_perl 2.0.1 for cygwin 1.5.17

2005-06-26 Thread Douglas Riordan
hello all, i've been trying to work through installing apache 2.0.54 + mp 2.0.1 over the weekend for cygwin 1.5.17- and it's been kinda bumpy. any help would be appreciated. it doesn't appear apache2 + mp2 installs are common for cygwin (or if they are they go quite smoothly because digging up h

Re: [mp2] can't make or make test mod_perl 2.0.1 for cygwin 1.5.17

2005-06-27 Thread Douglas Riordan
On 6/27/05, Nick *** <[EMAIL PROTECTED]> wrote: > >hello all, > > > >i've been trying to work through installing apache 2.0.54 + mp 2.0.1 > >over the weekend for cygwin 1.5.17- and it's been kinda bumpy. any > >help would be appreciated. it doesn't appear apache2 + mp2 installs > >are common for cy

[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 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

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 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, Philip M. Gollucci <[EMAIL PROTECTED]> wrote: > > Douglas Riordan wrote: > > > > >from Apache2::Const's perldoc > > >use Apache2::Const qw(OK

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: > &