dougm       00/05/23 08:56:13

  Modified:    .        Changes
               src/modules/perl Table.xs
  Log:
  fix 1.24's Apache::Table->unset changes for win32
  
  Revision  Changes    Path
  1.489     +3 -0      modperl/Changes
  
  Index: Changes
  ===================================================================
  RCS file: /home/cvs/modperl/Changes,v
  retrieving revision 1.488
  retrieving revision 1.489
  diff -u -r1.488 -r1.489
  --- Changes   2000/05/19 16:01:22     1.488
  +++ Changes   2000/05/23 15:56:04     1.489
  @@ -10,6 +10,9 @@
   
   =item 1.24_01-dev
   
  +fix 1.24's Apache::Table->unset changes for win32
  +[Randy Kobes <[EMAIL PROTECTED]>]
  +
   fix broken Win32 build (unresolved external symbol _ap_configtestonly)
   [Eric Cholet <[EMAIL PROTECTED]>]
   
  
  
  
  1.10      +5 -1      modperl/src/modules/perl/Table.xs
  
  Index: Table.xs
  ===================================================================
  RCS file: /home/cvs/modperl/src/modules/perl/Table.xs,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- Table.xs  2000/05/12 22:45:32     1.9
  +++ Table.xs  2000/05/23 15:56:12     1.10
  @@ -58,7 +58,11 @@
   
   }
   
  -static void table_delete(table *tab, const char *key, const char *val)
  +static void
  +#ifdef WIN32
  +_stdcall 
  +#endif
  +table_delete(table *tab, const char *key, const char *val)
   {
       table_unset(tab, val);
   }
  
  
  

Reply via email to