dougm       00/04/20 23:03:52

  Modified:    .        Changes
               src/modules/perl Apache.xs
  Log:
  add Apache::FILENO method for 5.6.0+ tied filehandle support
  
  Revision  Changes    Path
  1.471     +3 -0      modperl/Changes
  
  Index: Changes
  ===================================================================
  RCS file: /home/cvs/modperl/Changes,v
  retrieving revision 1.470
  retrieving revision 1.471
  diff -u -r1.470 -r1.471
  --- Changes   2000/04/21 05:56:19     1.470
  +++ Changes   2000/04/21 06:03:51     1.471
  @@ -10,6 +10,9 @@
   
   =item 1.22_01-dev
   
  +add Apache::FILENO method for 5.6.0+ tied filehandle support
  +thanks to Richard Titmuss for the spot
  +
   --disable-rule=EXPAT is passed to Apache's configure to avoid
   XML::Parser conflicts
   
  
  
  
  1.96      +10 -0     modperl/src/modules/perl/Apache.xs
  
  Index: Apache.xs
  ===================================================================
  RCS file: /home/cvs/modperl/src/modules/perl/Apache.xs,v
  retrieving revision 1.95
  retrieving revision 1.96
  diff -u -r1.95 -r1.96
  --- Apache.xs 2000/04/13 18:43:23     1.95
  +++ Apache.xs 2000/04/21 06:03:52     1.96
  @@ -600,6 +600,16 @@
       OUTPUT:
       RETVAL
   
  +int
  +FILENO(r)
  +    Apache r
  +
  +    CODE:
  +    RETVAL = fileno(stdout);
  +
  +    OUTPUT:
  +    RETVAL
  +
   SV *
   as_string(r)
       Apache r
  
  
  

Reply via email to