cvs commit: modperl/lib mod_perl.pm

2001-07-11 Thread dougm

dougm   01/07/11 19:27:29

  Modified:.Changes
   lib  mod_perl.pm
  Log:
  bump version
  
  Revision  ChangesPath
  1.616 +2 -0  modperl/Changes
  
  Index: Changes
  ===
  RCS file: /home/cvs/modperl/Changes,v
  retrieving revision 1.615
  retrieving revision 1.616
  diff -u -r1.615 -r1.616
  --- Changes   2001/07/12 02:12:00 1.615
  +++ Changes   2001/07/12 02:27:25 1.616
  @@ -8,6 +8,8 @@
   
   =over 3
   
  +=item 1.26_01-dev
  +
   =item 1.26 - July 11, 2001
   
   fix 'make test' problem seen with Perl 5.005_03
  
  
  
  1.53  +1 -1  modperl/lib/mod_perl.pm
  
  Index: mod_perl.pm
  ===
  RCS file: /home/cvs/modperl/lib/mod_perl.pm,v
  retrieving revision 1.52
  retrieving revision 1.53
  diff -u -r1.52 -r1.53
  --- mod_perl.pm   2001/07/12 02:12:03 1.52
  +++ mod_perl.pm   2001/07/12 02:27:28 1.53
  @@ -4,7 +4,7 @@
   use DynaLoader ();
   
   BEGIN {
  -$mod_perl::VERSION = "1.26";
  +$mod_perl::VERSION = "1.2601";
   }
   
   sub boot {
  
  
  



cvs commit: modperl/lib mod_perl.pm

2001-07-11 Thread dougm

dougm   01/07/11 19:12:04

  Modified:.Changes
   lib  mod_perl.pm
  Log:
  1.26
  
  Revision  ChangesPath
  1.615 +1 -1  modperl/Changes
  
  Index: Changes
  ===
  RCS file: /home/cvs/modperl/Changes,v
  retrieving revision 1.614
  retrieving revision 1.615
  diff -u -r1.614 -r1.615
  --- Changes   2001/07/12 01:32:55 1.614
  +++ Changes   2001/07/12 02:12:00 1.615
  @@ -8,7 +8,7 @@
   
   =over 3
   
  -=item 1.25_02-dev
  +=item 1.26 - July 11, 2001
   
   fix 'make test' problem seen with Perl 5.005_03
   
  
  
  
  1.52  +1 -1  modperl/lib/mod_perl.pm
  
  Index: mod_perl.pm
  ===
  RCS file: /home/cvs/modperl/lib/mod_perl.pm,v
  retrieving revision 1.51
  retrieving revision 1.52
  diff -u -r1.51 -r1.52
  --- mod_perl.pm   2001/07/06 21:27:41 1.51
  +++ mod_perl.pm   2001/07/12 02:12:03 1.52
  @@ -4,7 +4,7 @@
   use DynaLoader ();
   
   BEGIN {
  -$mod_perl::VERSION = "1.2502";
  +$mod_perl::VERSION = "1.26";
   }
   
   sub boot {
  
  
  



cvs commit: modperl Makefile.PL

2001-07-11 Thread dougm

dougm   01/07/11 18:41:19

  Modified:.Makefile.PL
  Log:
  minor cosmetic
  
  Revision  ChangesPath
  1.194 +6 -5  modperl/Makefile.PL
  
  Index: Makefile.PL
  ===
  RCS file: /home/cvs/modperl/Makefile.PL,v
  retrieving revision 1.193
  retrieving revision 1.194
  diff -u -r1.193 -r1.194
  --- Makefile.PL   2001/07/12 01:34:44 1.193
  +++ Makefile.PL   2001/07/12 01:41:18 1.194
  @@ -339,11 +339,12 @@
push @mm_args, $_;
   }

  - if($k eq 'PREFIX')
  - {
  - require File::Spec;
  - $MOD_PERL_PREFIX = 
File::Spec->catfile($v,'lib','site_perl',$Config{'version'},$Config{'archname'});
  - }
  +if ($k eq 'PREFIX') {
  +require File::Spec;
  +$MOD_PERL_PREFIX =
  +  File::Spec->catfile($v, 'lib', 'site_perl',
  +  $Config{'version'}, $Config{'archname'});
  +}

   $v = 1 unless defined $v;
   if($experimental{$k}) {
  
  
  



cvs commit: modperl Makefile.PL

2001-07-11 Thread dougm

dougm   01/07/11 18:34:46

  Modified:.Makefile.PL
  Log:
  fixes for building with 5.004
  
  Revision  ChangesPath
  1.193 +4 -2  modperl/Makefile.PL
  
  Index: Makefile.PL
  ===
  RCS file: /home/cvs/modperl/Makefile.PL,v
  retrieving revision 1.192
  retrieving revision 1.193
  diff -u -r1.192 -r1.193
  --- Makefile.PL   2001/07/10 15:45:21 1.192
  +++ Makefile.PL   2001/07/12 01:34:44 1.193
  @@ -341,7 +341,7 @@

if($k eq 'PREFIX')
{
  - use File::Spec;
  + require File::Spec;
$MOD_PERL_PREFIX = 
File::Spec->catfile($v,'lib','site_perl',$Config{'version'},$Config{'archname'});
}

  @@ -2043,7 +2043,9 @@
PERL_STATIC_EXTS PERL_SSI PERL_SECTIONS USE_APXS 
WITH_APXS);
   {
   no strict 'refs';
  -$my_config{$_} = ${$_} for @other_hooks;
  +for (@other_hooks) {
  +$my_config{$_} = ${$_};
  +}
   }
   if ($win32_auto) {
   for (qw(APACHE_INC APACHE_LIB MODPERL_INC MODPERL_LIB)) {
  
  
  



cvs commit: modperl/t/net/perl test

2001-07-11 Thread dougm

dougm   01/07/11 18:32:59

  Modified:.Changes
   t/net/perl test
  Log:
  fix 'make test' problem seen with Perl 5.005_03
  
  Revision  ChangesPath
  1.614 +2 -0  modperl/Changes
  
  Index: Changes
  ===
  RCS file: /home/cvs/modperl/Changes,v
  retrieving revision 1.613
  retrieving revision 1.614
  diff -u -r1.613 -r1.614
  --- Changes   2001/07/11 15:12:06 1.613
  +++ Changes   2001/07/12 01:32:55 1.614
  @@ -10,6 +10,8 @@
   
   =item 1.25_02-dev
   
  +fix 'make test' problem seen with Perl 5.005_03
  +
   remove $r->finfo usage from Apache::PerlRun, clearly finfo isn't as
   stable as it should be
   [Surat Singh Bhati <[EMAIL PROTECTED]>]
  
  
  
  1.18  +1 -1  modperl/t/net/perl/test
  
  Index: test
  ===
  RCS file: /home/cvs/modperl/t/net/perl/test,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- test  2000/10/10 16:34:02 1.17
  +++ test  2001/07/12 01:32:58 1.18
  @@ -60,7 +60,7 @@
   #$r->warn("sequence number: " . $r->seqno);
   
   if($Apache::TestSIG) {
  -use Apache::SIG ();
  +require Apache::SIG;
   Apache::SIG->set;
   }
   
  
  
  



cvs commit: modperl Changes

2001-07-11 Thread dougm

dougm   01/07/11 08:12:11

  Modified:lib/Apache PerlRun.pm
   .Changes
  Log:
  remove $r->finfo usage from Apache::PerlRun, clearly finfo isn't as
  stable as it should be
  
  Revision  ChangesPath
  1.37  +3 -1  modperl/lib/Apache/PerlRun.pm
  
  Index: PerlRun.pm
  ===
  RCS file: /home/cvs/modperl/lib/Apache/PerlRun.pm,v
  retrieving revision 1.36
  retrieving revision 1.37
  diff -u -r1.36 -r1.37
  --- PerlRun.pm2001/01/29 22:13:40 1.36
  +++ PerlRun.pm2001/07/11 15:11:57 1.37
  @@ -32,7 +32,9 @@
   my($pr) = @_;
   my $r = $pr->{r};
   my $filename = $r->filename;
  -if (-r $r->finfo && -s _) {
  +#XXX reported problems with $r->finfo
  +#if (-r $r->finfo && -s _) {
  +if (-r $filename && -s _) {
if (!($r->allow_options & OPT_EXECCGI)) {
$r->log_reason("Options ExecCGI is off in this directory",
   $filename);
  
  
  
  1.613 +4 -0  modperl/Changes
  
  Index: Changes
  ===
  RCS file: /home/cvs/modperl/Changes,v
  retrieving revision 1.612
  retrieving revision 1.613
  diff -u -r1.612 -r1.613
  --- Changes   2001/07/11 03:02:28 1.612
  +++ Changes   2001/07/11 15:12:06 1.613
  @@ -10,6 +10,10 @@
   
   =item 1.25_02-dev
   
  +remove $r->finfo usage from Apache::PerlRun, clearly finfo isn't as
  +stable as it should be
  +[Surat Singh Bhati <[EMAIL PROTECTED]>]
  +
   Apache->server will now point the current VirtualHost when inside a
section, thanks to Robin Berjon for the spot