[patch] adjusting for API changes

2001-08-25 Thread Stas Bekman
this patch is needed to build mod_perl with the latest httpd-2.0 all tests now pass with the pre-fork MPM. Index: src/modules/perl/modperl_pcw.c === RCS file: /home/cvs/modperl-2.0/src/modules/perl/modperl_pcw.c,v retrieving

[patch] Makefile.PL prerequisites

2001-08-25 Thread Stas Bekman
this patch adds the prerequisites checking functionality. Add more modules as needed. Index: Makefile.PL === RCS file: /home/cvs/modperl-2.0/Makefile.PL,v retrieving revision 1.37 diff -u -r1.37 Makefile.PL --- Makefile.PL

[patch] adding more checks

2001-08-25 Thread Stas Bekman
I've messed something and I've started to get some problems, so I've added these checks: Index: Apache-Test/lib/Apache/TestConfig.pm === RCS file: /home/cvs/httpd-test/perl-framework/Apache-Test/lib/Apache/TestConfig.pm,v

scan's diff

2001-08-25 Thread Stas Bekman
With a small problem, 'make source_scan' works for me!!! I've attached the whole thing (and not inlined, since you can generate it yourself :)! I wanted to ask why on my side I seemingly get a better scanning. If you look at the snippet below, the previous var names seem to be badly parsed. @@

Re: [patch] adjusting for API changes

2001-08-25 Thread Doug MacEachern
On Sun, 26 Aug 2001, Stas Bekman wrote: this patch is needed to build mod_perl with the latest httpd-2.0 please go ahead and commit, thanks. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail:

Re: pushing method handlers by reference

2001-08-25 Thread Doug MacEachern
On Wed, 15 Aug 2001, Geoffrey Young wrote: hi all... I just got around to fixing something that has been a splinter in my mind for a while now... it all started with Andrew Ford documenting that push_handlers() didn't work for method handlers. it turns out they work just fine so

RE: pushing method handlers by reference

2001-08-25 Thread Geoffrey Young
the below patches allow the following formats, in addition to what is already currently supported $r-push_handlers(PerlFixupHandler = My::Class-can('foo')); $r-set_handlers(PerlFixupHandler = [My::Class-can('foo')]); cool! i don't understand why universal.c needs a

Re: [patch] adding more checks

2001-08-25 Thread Doug MacEachern
On Sun, 26 Aug 2001, Stas Bekman wrote: +# $thaw wasn't blessed +if (ref $thaw eq 'HASH') { +die couldn't find apache_test_config.pm; +} + this isn't right, it will die whenever things are clean. maybe you meant to do that only if $args-{thaw} ? sub