[ANNOUNCE] Apache::Filter::HTTPHeadersFixup 0.04

2004-08-20 Thread Stas Bekman
The uploaded file Apache-Filter-HTTPHeadersFixup-0.04.tar.gz has entered CPAN as file: $CPAN/authors/id/S/ST/STAS/Apache-Filter-HTTPHeadersFixup-0.04.tar.gz size: 8061 bytes md5: c70d06eb6197ba11f263e2dc6c9fcb6a Changes since 0.03: - adjust the code to use the latest mod_perl 2.0 API (re

[ANNOUNCE] Apache-Test 1.13

2004-08-20 Thread Stas Bekman
The uploaded file Apache-Test-1.13.tar.gz has entered CPAN as file: $CPAN/authors/id/S/ST/STAS/Apache-Test-1.13.tar.gz size: 123809 bytes md5: 71282cd1f5d5499cd2e2126db01806fa Changes since 1.12: move the custom config code into Apache::TestConfig, split the config object creation in 2 p

[ANNOUNCE] mod_perl 1.99_15

2004-08-20 Thread Stas Bekman
mod_perl 1.99_15 is out: http://apache.org/dist/perl/mod_perl-1.99_15.tar.gz http://apache.org/dist/perl/mod_perl-1.99_15.tar.gz.asc (pgp sig) The uploaded file mod_perl-1.99_15.tar.gz has entered CPAN as file: $CPAN/authors/id/S/ST/STAS/mod_perl-1.99_15.tar.gz size: 1350278 bytes

Re: [mp2] unable to compile 1.99_14 on solaris 9 + workaround

2004-08-20 Thread Stas Bekman
Marc Slagle wrote: Why doesn't it use the sun compiler when compilinig mod_perl? where does cc point? How come that it has picked gcc? Compiler: cc='cc', ccflags ='-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64', mod_perl simply tries to use the same compiler perl was compiled with, so if perl

Re: getppid() in mod_perl 1.29 returns cached value

2004-08-20 Thread Stas Bekman
Geoffrey Young wrote: +/* starting from 5.8.1 perl caches ppids, so we need to maintain our + * own. some distros fetch fake 5.8.0 with changes from 5.8.1, so we + * need to do that for those fake 5.8.0 as well. real 5.8.0 doesn't + * have THREADS_HAVE_PIDS defined. + */ isn't THREADS_HAVE_PIDS en

Re: Apache::Session Maint and Test Suite Revamp

2004-08-20 Thread Casey West
It was Wednesday, August 18, 2004 when Casey West took the soap box, saying: : If it's alright with everyone[*], I'd like to release a new version of : Apache-Session for development. The only change is an upgraded test : suite. Since there will be more releases I'd also like to alter the : version

Re: [mp2] unable to compile 1.99_14 on solaris 9 + workaround

2004-08-20 Thread Marc Slagle
Why doesn't it use the sun compiler when compilinig mod_perl? where does cc point? How come that it has picked gcc? Compiler: cc='cc', ccflags ='-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64', mod_perl simply tries to use the same compiler perl was compiled with, so if perl reports cc and it's

Re: getppid() in mod_perl 1.29 returns cached value

2004-08-20 Thread Geoffrey Young
> +/* starting from 5.8.1 perl caches ppids, so we need to maintain our > + * own. some distros fetch fake 5.8.0 with changes from 5.8.1, so we > + * need to do that for those fake 5.8.0 as well. real 5.8.0 doesn't > + * have THREADS_HAVE_PIDS defined. > + */ isn't THREADS_HAVE_PIDS enough then,