Re: Makefile.PL Questions

2003-07-20 Thread David Wheeler
On Saturday, July 19, 2003, at 01:33 PM, Stas Bekman wrote: Yes, please. I doubt anybody is going to need it anyways. mercury% make test /usr/local/bin/perl -Iblib/arch -Iblib/lib \ t/TEST -clean *** setting ulimit to allow core files ulimit -c unlimited; t/TEST -clean APACHE_USER= APACHE_GROUP=

Re: Makefile.PL Questions

2003-07-18 Thread Stas Bekman
David Wheeler wrote: On Tuesday, July 15, 2003, at 01:15 PM, Stas Bekman wrote: Wholy OS X, why would it fail if it resides in a diffent namespace :( can you try nuking this code: SV * DeadCode() CODE: RETVAL = DeadCode(aTHX); OUTPUT: RETVAL from Peek.xs.mp1.perl5.8 and then rerun 'perl

Re: Makefile.PL Questions

2003-07-18 Thread David Wheeler
On Friday, July 18, 2003, at 12:00 PM, Stas Bekman wrote: So what t/logs/error_log has to say about it? mercury% cat t/logs/error_log [Wed Jul 16 09:00:56 2003] [debug] mod_rendezvous_apple.c(1012): mod_rendezvous_apple: Module init count=1 pid=1746. [Wed Jul 16 09:00:57 2003] [debug]

Re: Makefile.PL Questions

2003-07-16 Thread David Wheeler
On Tuesday, July 15, 2003, at 01:15 PM, Stas Bekman wrote: Wholy OS X, why would it fail if it resides in a diffent namespace :( can you try nuking this code: SV * DeadCode() CODE: RETVAL = DeadCode(aTHX); OUTPUT: RETVAL from Peek.xs.mp1.perl5.8 and then rerun 'perl Makefile.PL'. Better.

Re: Makefile.PL Questions

2003-07-15 Thread David Wheeler
On Wednesday, July 9, 2003, at 09:14 PM, Stas Bekman wrote: David, also please check the latest Apache::Peek on CPAN, I have started abstracting this functionality especially for complex builds which has to support both mod_perl versions. I haven't finished yet, but since pretty much all

Re: Makefile.PL Questions

2003-07-15 Thread Stas Bekman
David Wheeler wrote: On Wednesday, July 9, 2003, at 09:14 PM, Stas Bekman wrote: David, also please check the latest Apache::Peek on CPAN, I have started abstracting this functionality especially for complex builds which has to support both mod_perl versions. I haven't finished yet, but

Re: Makefile.PL Questions

2003-07-09 Thread Stas Bekman
David Wheeler wrote: On Monday, June 30, 2003, at 12:11 PM, David Wheeler wrote: BEGIN{ if (eval {require Apache::Test}) { Apache::Test-import(qw(have_lwp plan)); require Apache::TestRequest; Apache::TestRequest-import(qw(GET POST)); plan tests = 43, have_lwp;

Re: Makefile.PL Questions

2003-06-30 Thread Geoffrey Young
I can avoid this by checking to see if Apache::Test loads and only using it if it does. But then, how would I set up the tests to run after CPAN.pm has installed Apache::Test? Does it run Makefile.PL again? I don't ever use CPAN.pm, so I don't know if the way I have been going about it

Re: Makefile.PL Questions

2003-06-30 Thread David Wheeler
On Monday, June 30, 2003, at 11:26 AM, Geoffrey Young wrote: I don't ever use CPAN.pm, so I don't know if the way I have been going about it actually works or not, but my standard 1.0 Makefile.PL (which was linked to in the perl.com article) looks something like sub MY::test { eval {

Re: Makefile.PL Questions

2003-06-30 Thread David Wheeler
On Monday, June 30, 2003, at 11:26 AM, Geoffrey Young wrote: this makes 'make test' echo the error string or run the tests, depending on whether A::T is installed. in either case, 'make test' is successful (I hope :) Looks like it would be. I decided to use a different approach. Since some of

Re: Makefile.PL Questions

2003-06-30 Thread David Wheeler
On Monday, June 30, 2003, at 12:11 PM, David Wheeler wrote: BEGIN{ if (eval {require Apache::Test}) { Apache::Test-import(qw(have_lwp plan)); require Apache::TestRequest; Apache::TestRequest-import(qw(GET POST)); plan tests = 43, have_lwp; } else {