dougm       01/06/12 13:45:38

  Modified:    .        Changes
               src/modules/perl apache_inc.h
  Log:
  win32 fixes for apache 1.3.20
  
  Revision  Changes    Path
  1.593     +2 -0      modperl/Changes
  
  Index: Changes
  ===================================================================
  RCS file: /home/cvs/modperl/Changes,v
  retrieving revision 1.592
  retrieving revision 1.593
  diff -u -r1.592 -r1.593
  --- Changes   2001/05/15 17:02:19     1.592
  +++ Changes   2001/06/12 20:45:37     1.593
  @@ -10,6 +10,8 @@
   
   =item 1.25_01-dev
   
  +win32 fixes for apache 1.3.20 [Randy Kobes <[EMAIL PROTECTED]>]
  +
   adjust perl_clear_symtab() to deal properly bleedperl's version of
   cv_undef() (which broke modules with directive handlers)
   thanks to Geoffrey Young for the spot
  
  
  
  1.5       +11 -0     modperl/src/modules/perl/apache_inc.h
  
  Index: apache_inc.h
  ===================================================================
  RCS file: /home/cvs/modperl/src/modules/perl/apache_inc.h,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- apache_inc.h      2000/04/01 23:08:22     1.4
  +++ apache_inc.h      2001/06/12 20:45:38     1.5
  @@ -69,6 +69,11 @@
   #undef sleep
   #endif
   
  +#ifdef isnan
  +#define apache_isnan isnan
  +#undef isnan
  +#endif
  +
   #ifdef PERL_IS_5_6
   
   #ifdef opendir
  @@ -171,6 +176,12 @@
   #undef stat
   #define stat apache_stat
   #undef apache_stat
  +#endif
  +
  +#ifdef apache_isnan
  +#undef isnan
  +#define isnan apache_isnan
  +#undef apache_isnan
   #endif
   
   #ifdef apache_opendir
  
  
  

Reply via email to