You are viewing a plain text version of this content. The canonical link for it is here.
Posted to embperl-cvs@perl.apache.org by ri...@apache.org on 2004/08/22 15:26:49 UTC

cvs commit: embperl Changes.pod Embperl.pm

richter     2004/08/22 06:26:49

  Modified:    .        Changes.pod Embperl.pm
  Log:
  update for mod_perl-1.99_15
  
  Revision  Changes    Path
  1.248     +3 -0      embperl/Changes.pod
  
  Index: Changes.pod
  ===================================================================
  RCS file: /home/cvs/embperl/Changes.pod,v
  retrieving revision 1.247
  retrieving revision 1.248
  diff -u -r1.247 -r1.248
  --- Changes.pod	17 Aug 2004 06:17:58 -0000	1.247
  +++ Changes.pod	22 Aug 2004 13:26:48 -0000	1.248
  @@ -20,6 +20,9 @@
      - Fixed problem that checkboxes or options or not correctly selected
        on the second request when value was html escaped
      - Fixed Segfault under Apache 1.3 when doing a syntax check
  +   - use Apache::ServerRec when mod_perl version is 1.99_15 or above.
  +     Spotted by Aare Vesi.
  +   - Fixed endless loop on 64Bit Alpha and ia64.
   
   =head1 2.0b11  15. March 2004
   
  
  
  
  1.191     +9 -2      embperl/Embperl.pm
  
  Index: Embperl.pm
  ===================================================================
  RCS file: /home/cvs/embperl/Embperl.pm,v
  retrieving revision 1.190
  retrieving revision 1.191
  diff -u -r1.190 -r1.191
  --- Embperl.pm	16 Aug 2004 07:36:13 -0000	1.190
  +++ Embperl.pm	22 Aug 2004 13:26:48 -0000	1.191
  @@ -67,7 +67,14 @@
   
   if ($modperl2)
       {
  -    require Apache::Server ;
  +    if (($modperl =~ /_(\d+)/) && $1 < 15)
  +	{
  +        require Apache::Server ;
  +	}
  +    else
  +	{
  +        require Apache::ServerRec ;
  +	}
       require Apache::ServerUtil ;
       require Apache::RequestRec ;
       require Apache::RequestUtil ;
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: embperl-cvs-unsubscribe@perl.apache.org
For additional commands, e-mail: embperl-cvs-help@perl.apache.org