Re: [ANNOUNCE] mod_perl 2.0.0-RC6

2005-05-09 Thread Stas Bekman
Stas Bekman wrote: Octavian Rasnita wrote: Hi, I have tried to install it, using: # perl Makefile.pl # make After this step, it gave the following error: modperl_filter.c: In function `modperl_brigade_dump': modperl_filter.c:1253: internal error: Illegal instruction Please submit a full bug report,

Re: [ANNOUNCE] mod_perl 2.0.0-RC6

2005-05-09 Thread Stas Bekman
Stas Bekman wrote: Tom Williams wrote: [...] Ok, with this patch applied, I now get this: [EMAIL PROTECTED] mod_perl-2.0.0-RC6]$ perl Makefile.PL MP_APXS=/usr/local/apache-2.0.54/bin/apxs Reading Makefile.PL args from @ARGV MP_APXS = /usr/local/apache-2.0.54/bin/apxs mod_perl/1.999_021 installa

Re: [ANNOUNCE] mod_perl 2.0.0-RC6

2005-05-08 Thread Stas Bekman
Tom Williams wrote: [...] Ok, with this patch applied, I now get this: [EMAIL PROTECTED] mod_perl-2.0.0-RC6]$ perl Makefile.PL MP_APXS=/usr/local/apache-2.0.54/bin/apxs Reading Makefile.PL args from @ARGV MP_APXS = /usr/local/apache-2.0.54/bin/apxs mod_perl/1.999_021 installation detected... no

Re: [ANNOUNCE] mod_perl 2.0.0-RC6

2005-05-08 Thread Tom Williams
Stas Bekman wrote: Tom, please try with this patch: Index: Makefile.PL === --- Makefile.PL (revision 168093) +++ Makefile.PL (working copy) @@ -126,8 +126,9 @@ set_modperl_version(); if ($old_modperl_version) { -$old_

Re: [ANNOUNCE] mod_perl 2.0.0-RC6

2005-05-08 Thread Stas Bekman
Tom Williams wrote: Stas Bekman wrote: Changes since RC5: (snip) improve the diagnostics when detecting mp2 < 1.999022, tell the user which files and/or dirs need to be removed [Stas] I'm trying to install mod_perl 2.0.0-RC6 on a RedHat 9 based Linux system that is currently running Apache 2.0.

Re: [ANNOUNCE] mod_perl 2.0.0-RC6

2005-05-07 Thread Tom Williams
Stas Bekman wrote: Changes since RC5: (snip) improve the diagnostics when detecting mp2 < 1.999022, tell the user which files and/or dirs need to be removed [Stas] I'm trying to install mod_perl 2.0.0-RC6 on a RedHat 9 based Linux system that is currently running Apache 2.0.52/mod_perl 2.0.0-RC4

Re: [ANNOUNCE] mod_perl 2.0.0-RC6

2005-05-06 Thread Stas Bekman
Randy Kobes wrote: On Fri, 6 May 2005, Steve Hay wrote: Markus Wichitill wrote: [ .. ] I guess you two didn't remove the "if (!size)" check like I did? Shit. How dumb am I? You're absolutely right -- you have to remove the size check as well in order for Randy's fix to even be reached! With this

Re: [ANNOUNCE] mod_perl 2.0.0-RC6

2005-05-06 Thread Randy Kobes
On Fri, 6 May 2005, Steve Hay wrote: > Markus Wichitill wrote: [ .. ] > > > >I guess you two didn't remove the "if (!size)" check like I did? > > > Shit. How dumb am I? > > You're absolutely right -- you have to remove the size > check as well in order for Randy's fix to even be reached! > With t

Re: [ANNOUNCE] mod_perl 2.0.0-RC6

2005-05-06 Thread Steve Hay
Markus Wichitill wrote: >Randy Kobes wrote: > > >>>Randy, if you spot locations in docs and tests that do a comparison with >>>these two constants, which we will now have right, please adjust those. >>>Thank you! >>> >>> >>Thanks, Stas. I've done that, but unfortunately, like Steve, >>I'm

Re: [ANNOUNCE] mod_perl 2.0.0-RC6

2005-05-06 Thread Markus Wichitill
Randy Kobes wrote: Randy, if you spot locations in docs and tests that do a comparison with these two constants, which we will now have right, please adjust those. Thank you! Thanks, Stas. I've done that, but unfortunately, like Steve, I'm also finding these 2 tests still have problems :( I'll keep

Re: [ANNOUNCE] mod_perl 2.0.0-RC6

2005-05-05 Thread Randy Kobes
On Thu, 5 May 2005, Stas Bekman wrote: > Randy Kobes wrote: > [...] > > Does the following fix this? > > > > === > > Index: xs/APR/Status/APR__Status.h > > === > > --- xs

Re: [ANNOUNCE] mod_perl 2.0.0-RC6

2005-05-05 Thread Stas Bekman
Randy Kobes wrote: [...] Does the following fix this? === Index: xs/APR/Status/APR__Status.h === --- xs/APR/Status/APR__Status.h (revision 168337) +++ xs/APR/Status/APR__S

Re: [ANNOUNCE] mod_perl 2.0.0-RC6

2005-05-05 Thread Steve Hay
Randy Kobes wrote: >On Thu, 5 May 2005, Steve Hay wrote: > > > >>Randy Kobes wrote: >> >> >> >>>On Thu, 5 May 2005, Markus Wichitill wrote: >>> >>> >[ ... ] > > The actual error code returned by apr_file_open is 720002. >>>Does the following fix this? >>> >>>

Re: [ANNOUNCE] mod_perl 2.0.0-RC6

2005-05-05 Thread Randy Kobes
On Thu, 5 May 2005, Steve Hay wrote: > Randy Kobes wrote: > > >On Thu, 5 May 2005, Markus Wichitill wrote: [ ... ] > >>The actual error code returned by apr_file_open is 720002. > > > >Does the following fix this? > > > No. I was just in the process of trying the same thing > myself, but it doesn

Re: [ANNOUNCE] mod_perl 2.0.0-RC6

2005-05-05 Thread Markus Wichitill
Steve Hay wrote: I've removed the size code, too, and the problem is that after the exception is thrown, neither of the tests in RegistryCooker::read_script apply: if (ref $@ eq 'APR::Error') { return Apache2::Const::FORBIDDEN if $@ == APR::Const::EACCES; return Apache2

Re: [ANNOUNCE] mod_perl 2.0.0-RC6

2005-05-05 Thread Steve Hay
Randy Kobes wrote: >On Thu, 5 May 2005, Markus Wichitill wrote: > > > >>Steve Hay wrote: >> >> how can we test if the filehandle is valid then? may be we should skip that bit altogether? Steve, does it work if you comment out the whole if (!size) { ... } block? >>>

Re: [ANNOUNCE] mod_perl 2.0.0-RC6

2005-05-05 Thread Randy Kobes
On Thu, 5 May 2005, Markus Wichitill wrote: > Steve Hay wrote: > >>how can we test if the filehandle is valid then? may be we should skip > >>that bit altogether? Steve, does it work if you comment out the whole > >> > >> if (!size) { ... } > >> > >>block? > > > > No, it doesn't :( > > I've remov

Re: [ANNOUNCE] mod_perl 2.0.0-RC6

2005-05-05 Thread Markus Wichitill
Steve Hay wrote: how can we test if the filehandle is valid then? may be we should skip that bit altogether? Steve, does it work if you comment out the whole if (!size) { ... } block? No, it doesn't :( I've removed the size code, too, and the problem is that after the exception is thrown, neith

Re: [ANNOUNCE] mod_perl 2.0.0-RC6

2005-05-05 Thread Stas Bekman
Steve Hay wrote: Stas Bekman wrote: Markus Wichitill wrote: Steve Hay wrote: Almost all OK on Win32 (Apache 2.0.54 and a recent bleadperl). Main tests are all successful, but ModPerl-Registry tests failed 404.t test 1 and redirect.t test 2. Same here (WinXP, 2.0.54, 5.8.6). modperl_

Re: [ANNOUNCE] mod_perl 2.0.0-RC6

2005-05-05 Thread Steve Hay
Stas Bekman wrote: >Markus Wichitill wrote: > > >>Steve Hay wrote: >> >> >> >>>Almost all OK on Win32 (Apache 2.0.54 and a recent bleadperl). Main >>>tests are all successful, but ModPerl-Registry tests failed 404.t test >>>1 and redirect.t test 2. >>> >>> >>Same here (WinXP, 2.0.54

Re: [ANNOUNCE] mod_perl 2.0.0-RC6

2005-05-04 Thread Stas Bekman
Octavian Rasnita wrote: Hi, I have tried to install it, using: # perl Makefile.pl # make After this step, it gave the following error: modperl_filter.c: In function `modperl_brigade_dump': modperl_filter.c:1253: internal error: Illegal instruction Please submit a full bug report, with preprocessed

Re: [ANNOUNCE] mod_perl 2.0.0-RC6

2005-05-04 Thread Stas Bekman
Markus Wichitill wrote: Steve Hay wrote: Almost all OK on Win32 (Apache 2.0.54 and a recent bleadperl). Main tests are all successful, but ModPerl-Registry tests failed 404.t test 1 and redirect.t test 2. Same here (WinXP, 2.0.54, 5.8.6). modperl_slurp_filename doesn't raise a ENOENT exception

Re: [ANNOUNCE] mod_perl 2.0.0-RC6

2005-05-04 Thread Markus Wichitill
Steve Hay wrote: Almost all OK on Win32 (Apache 2.0.54 and a recent bleadperl). Main tests are all successful, but ModPerl-Registry tests failed 404.t test 1 and redirect.t test 2. Same here (WinXP, 2.0.54, 5.8.6). modperl_slurp_filename doesn't raise a ENOENT exception when it should. The

Re: [ANNOUNCE] mod_perl 2.0.0-RC6

2005-05-04 Thread Steve Hay
Stas Bekman wrote: >The uploaded file > > mod_perl-2.0.0-RC6.tar.gz > >has entered CPAN > Almost all OK on Win32 (Apache 2.0.54 and a recent bleadperl). Main tests are all successful, but ModPerl-Registry tests failed 404.t test 1 and redirect.t test 2. The 404.t test gives the following v

Re: [ANNOUNCE] mod_perl 2.0.0-RC6

2005-05-04 Thread Octavian Rasnita
Hi, I have tried to install it, using: # perl Makefile.pl # make After this step, it gave the following error: modperl_filter.c: In function `modperl_brigade_dump': modperl_filter.c:1253: internal error: Illegal instruction Please submit a full bug report, with preprocessed source if appropriat