You are viewing a plain text version of this content. The canonical link for it is here.
Posted to test-dev@httpd.apache.org by Stas Bekman <st...@stason.org> on 2004/12/15 18:22:49 UTC

Re: svn commit: r111983 - /httpd/test/trunk/perl-framework/Apache-Test/ToDo

stas@apache.org wrote:
> Author: stas
> Date: Wed Dec 15 08:08:52 2004
> New Revision: 111983
> 
> URL: http://svn.apache.org/viewcvs?view=rev&rev=111983
> Log:
> - general config: adjust Apache/TestConfig.pm not to write irrelevant
>   httpd.conf sections (e.g. <IfModule prefork.c> for win32, and vice
>   versa, A-T knows exactly what mpm it needs to write the config for).
>   Thus reducing the clutter.
> 
> - winnt case: Apache/TestConfig.pm config for <IfModule mpm_winnt.c>
>   before Apache-2.0.50 ThreadsPerChild had to be at least as big as
>   the number of Vhosts. This was fixed in 2.0.50. Since A-T knows the
>   httpd version, it shouldn't start so many threads for httpd >=
>   2.0.50, but @MinClients@. Also add BACK_COMPAT_MARKER in the logic
>   so when no longer support httpd < 2.0.50, this logic could be removed.

Chris, if you are still looking at what to do to improve A-T, I think this 
two new todo items might be of interest to you.

--
__________________________________________________________________
Stas Bekman            JAm_pH ------> Just Another mod_perl Hacker
http://stason.org/     mod_perl Guide ---> http://perl.apache.org
mailto:stas@stason.org http://use.perl.org http://apacheweek.com
http://modperlbook.org http://apache.org   http://ticketmaster.com

Re: svn commit: r111983 - /httpd/test/trunk/perl-framework/Apache-Test/ToDo

Posted by Stas Bekman <st...@stason.org>.
>>> I still need to take a crack at the mp2 RC and see if it will build 
>>> on my setup as well.
>>
>>
>>
>> that's definitely more important!
>>
> I would think so. I did a quick test that night, and I still couldn't do 
> a stock "perl Makefile.PL" and have it find libs without doing "perl 
> Makefile.PL MP_AP_PREFIX=C:\Development\Apache2" instead. I thought 
> there were a few patches for that, but maybe not.

You are on the mined win32 land, nothing is taken for granted there. If an 
explicit path works, that's already a great thing (of course thanks to 
Randy's magic)

> since I hadn't spent more than 2 minutes on the process, I didn't submit 
> a bug report as of yet.

OK, but make sure that we contrinue modperl thread on the modperl dev list 
and not here :) Thanks.


-- 
__________________________________________________________________
Stas Bekman            JAm_pH ------> Just Another mod_perl Hacker
http://stason.org/     mod_perl Guide ---> http://perl.apache.org
mailto:stas@stason.org http://use.perl.org http://apacheweek.com
http://modperlbook.org http://apache.org   http://ticketmaster.com

Re: svn commit: r111983 - /httpd/test/trunk/perl-framework/Apache-Test/ToDo

Posted by "Christopher H. Laco" <cl...@chrislaco.com>.
Stas Bekman wrote:
> 
>>> Chris, if you are still looking at what to do to improve A-T, I think 
>>> this two new todo items might be of interest to you.
>>
>>
>>
>> I'm knee deep in another project at the moment, but I'm sure I'll get 
>> sick of it and need a break by the end of the weekend.
> 
> 
> No problem, there is no hurry, those are nice to have things. also these 
> two items shouldn't take more than an hour, probably most of the time 
> will be spent for testing
> 
>> I still need to take a crack at the mp2 RC and see if it will build on 
>> my setup as well.
> 
> 
> that's definitely more important!
> 
I would think so. I did a quick test that night, and I still couldn't do 
a stock "perl Makefile.PL" and have it find libs without doing "perl 
Makefile.PL MP_AP_PREFIX=C:\Development\Apache2" instead. I thought 
there were a few patches for that, but maybe not.

since I hadn't spent more than 2 minutes on the process, I didn't submit 
a bug report as of yet.

-=Chris



Re: svn commit: r111983 - /httpd/test/trunk/perl-framework/Apache-Test/ToDo

Posted by Stas Bekman <st...@stason.org>.
>> Chris, if you are still looking at what to do to improve A-T, I think 
>> this two new todo items might be of interest to you.
> 
> 
> I'm knee deep in another project at the moment, but I'm sure I'll get 
> sick of it and need a break by the end of the weekend.

No problem, there is no hurry, those are nice to have things. also these 
two items shouldn't take more than an hour, probably most of the time will 
be spent for testing

> I still need to take a crack at the mp2 RC and see if it will build on 
> my setup as well.

that's definitely more important!

-- 
__________________________________________________________________
Stas Bekman            JAm_pH ------> Just Another mod_perl Hacker
http://stason.org/     mod_perl Guide ---> http://perl.apache.org
mailto:stas@stason.org http://use.perl.org http://apacheweek.com
http://modperlbook.org http://apache.org   http://ticketmaster.com

Re: svn commit: r111983 - /httpd/test/trunk/perl-framework/Apache-Test/ToDo

Posted by "Christopher H. Laco" <cl...@chrislaco.com>.
Stas Bekman wrote:
> stas@apache.org wrote:
> 
>> Author: stas
>> Date: Wed Dec 15 08:08:52 2004
>> New Revision: 111983
>>
>> URL: http://svn.apache.org/viewcvs?view=rev&rev=111983
>> Log:
>> - general config: adjust Apache/TestConfig.pm not to write irrelevant
>>   httpd.conf sections (e.g. <IfModule prefork.c> for win32, and vice
>>   versa, A-T knows exactly what mpm it needs to write the config for).
>>   Thus reducing the clutter.
>>
>> - winnt case: Apache/TestConfig.pm config for <IfModule mpm_winnt.c>
>>   before Apache-2.0.50 ThreadsPerChild had to be at least as big as
>>   the number of Vhosts. This was fixed in 2.0.50. Since A-T knows the
>>   httpd version, it shouldn't start so many threads for httpd >=
>>   2.0.50, but @MinClients@. Also add BACK_COMPAT_MARKER in the logic
>>   so when no longer support httpd < 2.0.50, this logic could be removed.
> 
> 
> Chris, if you are still looking at what to do to improve A-T, I think 
> this two new todo items might be of interest to you.

I'm knee deep in another project at the moment, but I'm sure I'll get 
sick of it and need a break by the end of the weekend.

I still need to take a crack at the mp2 RC and see if it will build on 
my setup as well.

-=Chris