stas        2002/12/03 18:27:54

  Modified:    lib/Apache compat.pm
               .        Changes
  Log:
  add an Apache::SIG backcompat stub to Apache::compat
  
  Revision  Changes    Path
  1.72      +9 -0      modperl-2.0/lib/Apache/compat.pm
  
  Index: compat.pm
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/lib/Apache/compat.pm,v
  retrieving revision 1.71
  retrieving revision 1.72
  diff -u -r1.71 -r1.72
  --- compat.pm 23 Nov 2002 22:35:06 -0000      1.71
  +++ compat.pm 4 Dec 2002 02:27:54 -0000       1.72
  @@ -509,5 +509,14 @@
       APR::Table::make($r->pool, $nelts);
   }
   
  +package Apache::SIG;
  +
  +use Apache::Const -compile => 'DECLINED';
  +
  +sub handler {
  +    # don't set the SIGPIPE
  +    return Apache::DECLINED;
  +}
  +
   1;
   __END__
  
  
  
  1.74      +4 -1      modperl-2.0/Changes
  
  Index: Changes
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/Changes,v
  retrieving revision 1.73
  retrieving revision 1.74
  diff -u -r1.73 -r1.74
  --- Changes   3 Dec 2002 15:28:52 -0000       1.73
  +++ Changes   4 Dec 2002 02:27:54 -0000       1.74
  @@ -10,6 +10,8 @@
   
   =item 1.99_08-dev
   
  +add an Apache::SIG backcompat stub to Apache::compat [Stas Bekman]
  +
   fix the Apache::TestConfigPerl's run_apache_test_config() function
   where test packages are scanned for the magic APACHE_TEST_CONFIGURE
   and if found get require()'d. Apache2 needs to be run for mod_perl
  @@ -74,7 +76,8 @@
   stuffed into.
   [Philippe M. Chiasson <[EMAIL PROTECTED]>]
   
  -rename overloaded LoadModule directive to PerlLoadModule
  +rename overloaded LoadModule directive to PerlLoadModule and adjust
  +the test naming
   
   =item 1.99_07 - September 25, 2002
   
  
  
  


Reply via email to