[patch] apr change adjustment

2001-08-27 Thread Stas Bekman
Index: src/modules/perl/modperl_bucket.c === RCS file: /home/cvs/modperl-2.0/src/modules/perl/modperl_bucket.c,v retrieving revision 1.5 diff -u -r1.5 modperl_bucket.c --- src/modules/perl/modperl_bucket.c 2001/08/21 16:46:56

why SBINDIR?

2001-08-27 Thread Stas Bekman
I don't recall when this thing have changed if at all. I'm messing with the build system including APXS which fails and I had to patch it. So suddenly I've started to get problems with ./t/TEST looking for sbin/httpd instead of bin/httpd. The following fixes the problem, but I'm not sure whether

Re: [patch] adding more checks

2001-08-27 Thread Stas Bekman
On Sun, 26 Aug 2001, Doug MacEachern wrote: On Sun, 26 Aug 2001, Stas Bekman wrote: I've to checkout the whole tree from scratch. yikes. i have seen apache_test_config.pm get into a messed up state before. you should be able to: cd t/conf rm *.* cvs up to get unstuck. this works

RE: pushing method handlers by reference

2001-08-27 Thread Geoffrey Young
ok, here is my first go - I'm not sure if it is sylistically what you were after, but I will rework it some to suit now that the proof-of-concept is over... just out of curiosity, I tried to get the method name from the gv returned from sv_2cv using GvNAME and kept segfaulting, then I noticed

Re: [patch] adding more checks (fwd)

2001-08-27 Thread Doug MacEachern
i didn't try the patch, but i think i just hit the same problem. can you test if its fixed now? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: pushing method handlers by reference

2001-08-27 Thread Doug MacEachern
On Mon, 27 Aug 2001, Geoffrey Young wrote: ok, here is my first go - I'm not sure if it is sylistically what you were after, but I will rework it some to suit now that the proof-of-concept is over... just out of curiosity, I tried to get the method name from the gv returned from sv_2cv

Re: [patch] Makefile.PL prerequisites

2001-08-27 Thread Doug MacEachern
On Sun, 26 Aug 2001, Stas Bekman wrote: of course they can ;) should I cook a new patch for it? Since mod_perl will be always distributed with Apache-Test, I suppose that all the things that can be used in Apache-Test and ModPerl:: should live in Apache::Test* namespace. Am I right? So

RE: pushing method handlers by reference

2001-08-27 Thread Geoffrey Young
just out of curiosity, I tried to get the method name from the gv returned from sv_2cv using GvNAME and kept segfaulting, then I noticed you never used that gv in similar calls... is that gv unreliable? not sure, but CvGV(cv) should be reliable. yeah, that's working fine. +

RE: pushing method handlers by reference

2001-08-27 Thread Doug MacEachern
On Mon, 27 Aug 2001, Geoffrey Young wrote: do I need some sort of check on cv before calling perl_cv_ismethod(cv) here? if cv is returned from sv_2cv() just checking that its not NULL should be fine. I guess the last thing is - how do I check my refcounts to make sure I got all the dec