dougm       01/06/13 14:27:54

  Modified:    .        Changes
               src/modules/perl perlio.c
  Log:
  fix to compile with sfio+ithreads
  
  Revision  Changes    Path
  1.594     +2 -0      modperl/Changes
  
  Index: Changes
  ===================================================================
  RCS file: /home/cvs/modperl/Changes,v
  retrieving revision 1.593
  retrieving revision 1.594
  diff -u -r1.593 -r1.594
  --- Changes   2001/06/12 20:45:37     1.593
  +++ Changes   2001/06/13 21:27:45     1.594
  @@ -10,6 +10,8 @@
   
   =item 1.25_01-dev
   
  +fix to compile with sfio+ithreads, thanks to Joe Schaefer for the spot
  +
   win32 fixes for apache 1.3.20 [Randy Kobes <[EMAIL PROTECTED]>]
   
   adjust perl_clear_symtab() to deal properly bleedperl's version of
  
  
  
  1.7       +1 -1      modperl/src/modules/perl/perlio.c
  
  Index: perlio.c
  ===================================================================
  RCS file: /home/cvs/modperl/src/modules/perl/perlio.c,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- perlio.c  2000/08/15 19:36:34     1.6
  +++ perlio.c  2001/06/13 21:27:51     1.7
  @@ -106,7 +106,7 @@
       XPUSHs(perl_bless_request_rec(((Apache_t*)disc)->r));
       XPUSHs(sv_2mortal(newSVpv(buffer,n)));
       PUTBACK;
  -    (void)(*CvXSUB(cv))(cv); 
  +    (void)(*CvXSUB(cv))(aTHXo_ cv); 
       FREETMPS;
       LEAVE;
       return n;
  
  
  

Reply via email to