Re: [mp2 bug] Perl*Env issues

2004-12-23 Thread Pratik
Very nice work, Pratik. The only problem is that it syncs SetEnv|PassEvn = %ENV completely twice for each Perl../Perl, PerlRequire and PerlModule, which is not very effective. It would be nice to keep track of just what keys have changed. I need a little help here. MP2 directly uses Perl

Re: how to raise entropy

2004-12-23 Thread Vivek Khera
On Dec 22, 2004, at 6:11 PM, Stas Bekman wrote: So any idea how to feed the entropy device, other than waking up every 15 minutes to hug my notebook? Can you add disk and network I/O interrupts to your entropy source? I'm sure your disk is churning away all the time during these tests. I

Re: how to raise entropy

2004-12-23 Thread Philippe M. Chiasson
Also, if your hardware is running a 2.6 kernel, try to insmod hw_random and if that reports finding something like : hw_random: AMD768 system management I/O registers at 0x5000. hw_random hardware driver 1.0.0 loaded Then you can just start /usr/sbin/rngd and you should get a very much improved

[Proposal] SVN aware release process

2004-12-23 Thread Philippe M. Chiasson
After going thru making the first release after our move to subversion, I'd like the opportunity to discuss a possible change to how we make releases. Our current release process is a good one, but it was built around CVS's limitations. So in this proposal, I'd like to solve a few problems. 1.

Re: [mp2 bug] Perl*Env issues

2004-12-23 Thread Stas Bekman
Pratik wrote: Very nice work, Pratik. The only problem is that it syncs SetEnv|PassEvn = %ENV completely twice for each Perl../Perl, PerlRequire and PerlModule, which is not very effective. It would be nice to keep track of just what keys have changed. I need a little help here. MP2 directly uses

Re: [Proposal] SVN aware release process

2004-12-23 Thread Stas Bekman
Philippe M. Chiasson wrote: After going thru making the first release after our move to subversion, I'd like the opportunity to discuss a possible change to how we make releases. Our current release process is a good one, but it was built around CVS's limitations. So in this proposal, I'd like to

Re: how to raise entropy

2004-12-23 Thread Stas Bekman
Philippe M. Chiasson wrote: Also, if your hardware is running a 2.6 kernel, try to insmod hw_random and if that reports finding something like : hw_random: AMD768 system management I/O registers at 0x5000. hw_random hardware driver 1.0.0 loaded Then you can just start /usr/sbin/rngd and you

[mp2] speeding up perl Makefile.PL

2004-12-23 Thread Randy Kobes
On an old (slow) machine I have, 'perl Makefile.PL' takes a long time. By inserting some debug statements: Index: lib/Apache/Build.pm === --- lib/Apache/Build.pm (revision

Re: [mp2] speeding up perl Makefile.PL

2004-12-23 Thread Stas Bekman
Randy Kobes wrote: On an old (slow) machine I have, 'perl Makefile.PL' takes a long time. By inserting some debug statements: [...] sub apxs_cflags { -my $cflags = __PACKAGE__-apxs('-q' = 'CFLAGS'); +my $self = shift; +my $ref = ($self and ref($self) eq __PACKAGE__) ? $self : ''; +

Re: [mp2] speeding up perl Makefile.PL

2004-12-23 Thread Randy Kobes
On Thu, 23 Dec 2004, Stas Bekman wrote: Randy Kobes wrote: On an old (slow) machine I have, 'perl Makefile.PL' takes a long time. By inserting some debug statements: [...] sub apxs_cflags { -my $cflags = __PACKAGE__-apxs('-q' = 'CFLAGS'); +my $self = shift; +my $ref =

Re: exit and ModPerl::Util::exit

2004-12-23 Thread Stas Bekman
the 3rd solution is now committed. -- __ Stas BekmanJAm_pH -- Just Another mod_perl Hacker http://stason.org/ mod_perl Guide --- http://perl.apache.org mailto:[EMAIL PROTECTED] http://use.perl.org

[ANNOUNCE] mod_perl 1.99_19 (2.0.0-RC2-XMas)

2004-12-23 Thread Philippe M. Chiasson
mod_perl 1.99_19 (2.0.0-RC2-XMas) is out: http://perl.apache.org/dist/mod_perl-2.0.0-RC2-XMas.tar.gz http://perl.apache.org/dist/mod_perl-2.0.0-RC2-XMas.tar.gz.asc (gpg sig) CPAN: file: $CPAN/authors/id/G/GO/GOZER/mod_perl-2.0.0-RC2-XMas.tar.gz size: 1407092 bytes md5:

[mp2] PAUSE indexer issues

2004-12-23 Thread Stas Bekman
The PAUSE indexer report requires that we do the following: Index: META.yml === --- META.yml(revision 123262) +++ META.yml(working copy) @@ -7,3 +7,10 @@ - Apache-Test package: - C::Preprocessed +

Re: [mp2] PAUSE indexer issues

2004-12-23 Thread Philippe M. Chiasson
Stas Bekman wrote: The PAUSE indexer report requires that we do the following: Index: META.yml === --- META.yml(revision 123262) +++ META.yml(working copy) @@ -7,3 +7,10 @@ - Apache-Test package: -

Re: [mp2] PAUSE indexer issues

2004-12-23 Thread Stas Bekman
Philippe M. Chiasson wrote: But I'm not sure what to do about these: module: Apache::Connection version: undef in file: mod_perl-2.0.0-RC2-XMas/lib/Apache/compat.pm status: Not indexed because mod_perl-1.29/Connection/Connection.pm in

Re: [mp2] pool object dependant methods insanity

2004-12-23 Thread Stas Bekman
APR::Pool: - mpxs_apr_pool_create (not sure about this one) Joe, any ideas how to solve this tricky one? This is the APR::Pool-new itself, when called as $p-new: Index: xs/APR/Pool/APR__Pool.h === --- xs/APR/Pool/APR__Pool.h

Re: [ANNOUNCE] mod_perl 1.99_19 (2.0.0-RC2-XMas)

2004-12-23 Thread Jie Gao
Merry Christmas and Happy New Year to all mp developers. Thank you very much! Jie - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [mp2] pool object dependant methods insanity

2004-12-23 Thread Stas Bekman
mpxs_Apache__RequestRec_new is another problematic method. it segfaults if adding a magic: Index: xs/Apache/RequestUtil/Apache__RequestUtil.h === --- xs/Apache/RequestUtil/Apache__RequestUtil.h (revision 123255) +++

Re: [mp2] PAUSE indexer issues

2004-12-23 Thread Philippe M. Chiasson
Stas Bekman wrote: Philippe M. Chiasson wrote: But I'm not sure what to do about these: module: Apache::Connection version: undef in file: mod_perl-2.0.0-RC2-XMas/lib/Apache/compat.pm status: Not indexed because mod_perl-1.29/Connection/Connection.pm in