stas        2002/11/25 19:48:42

  Modified:    xs/APR/PerlIO apr_perlio.h
               .        Changes
  Log:
  define IoTYPE_RDONLY/IoTYPE_WRONLY for perl-5.6.0 so the project
  compiles again under 5.6.0
  
  Revision  Changes    Path
  1.4       +8 -0      modperl-2.0/xs/APR/PerlIO/apr_perlio.h
  
  Index: apr_perlio.h
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/xs/APR/PerlIO/apr_perlio.h,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- apr_perlio.h      21 Jun 2002 15:28:43 -0000      1.3
  +++ apr_perlio.h      26 Nov 2002 03:48:42 -0000      1.4
  @@ -15,6 +15,14 @@
   #include "apr_optional.h"
   #endif
   
  +/* 5.6.0 */
  +#ifndef IoTYPE_RDONLY
  +#define IoTYPE_RDONLY '<'
  +#endif
  +#ifndef IoTYPE_WRONLY
  +#define IoTYPE_WRONLY '>'
  +#endif
  +
   typedef enum {
       APR_PERLIO_HOOK_READ,
       APR_PERLIO_HOOK_WRITE
  
  
  
  1.64      +3 -0      modperl-2.0/Changes
  
  Index: Changes
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/Changes,v
  retrieving revision 1.63
  retrieving revision 1.64
  diff -u -r1.63 -r1.64
  --- Changes   25 Nov 2002 22:46:29 -0000      1.63
  +++ Changes   26 Nov 2002 03:48:42 -0000      1.64
  @@ -10,6 +10,9 @@
   
   =item 1.99_08-dev
   
  +define IoTYPE_RDONLY/IoTYPE_WRONLY for perl-5.6.0 so the project
  +compiles again under 5.6.0 [Stas Bekman]
  +
   Allow output streaming filters to append data to the end of the stream
   [Stas Bekman]
   
  
  
  


Reply via email to