You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl-cvs@perl.apache.org by do...@apache.org on 2001/04/26 07:30:46 UTC

cvs commit: modperl/Apache Apache.pm

dougm       01/04/25 22:30:46

  Modified:    .        Changes
               Apache   Apache.pm
  Log:
  fix double-loading bug of Perl{Require,Module}s at startup time
  
  Revision  Changes    Path
  1.588     +2 -0      modperl/Changes
  
  Index: Changes
  ===================================================================
  RCS file: /home/cvs/modperl/Changes,v
  retrieving revision 1.587
  retrieving revision 1.588
  diff -u -r1.587 -r1.588
  --- Changes	2001/04/17 22:39:06	1.587
  +++ Changes	2001/04/26 05:30:44	1.588
  @@ -10,6 +10,8 @@
   
   =item 1.25_01-dev
   
  +fix double-loading bug of Perl{Require,Module}s at startup time
  +
   improve Apache::MyConfig [Stas Bekman <sb...@stason.org>]
   
   back out 'stop win32 crash when bringing down service' change, no
  
  
  
  1.63      +4 -1      modperl/Apache/Apache.pm
  
  Index: Apache.pm
  ===================================================================
  RCS file: /home/cvs/modperl/Apache/Apache.pm,v
  retrieving revision 1.62
  retrieving revision 1.63
  diff -u -r1.62 -r1.63
  --- Apache.pm	2001/01/29 16:07:08	1.62
  +++ Apache.pm	2001/04/26 05:30:45	1.63
  @@ -30,7 +30,10 @@
   
   sub httpd_conf {
       shift;
  -    push @Apache::ReadConfig::PerlConfig,
  +    no strict 'refs';
  +    #use a symbolic reference so %Apache::ReadConfig::
  +    #is empty at compile time
  +    push @{"Apache::ReadConfig::PerlConfig"},
         map "$_\n", @_;
   }