dougm       2002/11/24 17:31:00

  Modified:    .        Changes
               src/modules/perl modperl_perl_includes.h
  Log:
  Submitted by: Randy Kobes <[EMAIL PROTECTED]>
  Reviewed by:  dougm
  fixes to compile with ActivePerl 5.8 beta
  
  Revision  Changes    Path
  1.62      +3 -0      modperl-2.0/Changes
  
  Index: Changes
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/Changes,v
  retrieving revision 1.61
  retrieving revision 1.62
  diff -u -r1.61 -r1.62
  --- Changes   23 Nov 2002 23:25:32 -0000      1.61
  +++ Changes   25 Nov 2002 01:31:00 -0000      1.62
  @@ -10,6 +10,9 @@
   
   =item 1.99_08-dev
   
  +fixes to compile with ActivePerl 5.8 beta
  +[Randy Kobes <[EMAIL PROTECTED]>]
  +
   fix for directive handlers within vhosts using threaded MPMs
   [Stephen Clouse <[EMAIL PROTECTED]>]
   
  
  
  
  1.17      +15 -0     modperl-2.0/src/modules/perl/modperl_perl_includes.h
  
  Index: modperl_perl_includes.h
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/src/modules/perl/modperl_perl_includes.h,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- modperl_perl_includes.h   19 Jun 2002 05:18:04 -0000      1.16
  +++ modperl_perl_includes.h   25 Nov 2002 01:31:00 -0000      1.17
  @@ -36,11 +36,26 @@
   #ifdef WIN32
   #   define uid_t perl_uid_t
   #   define gid_t perl_gid_t
  +#   ifdef exit
  +#      define perl_exit exit
  +#      undef exit
  +#   endif
   #endif
   
   #include "EXTERN.h"
   #include "perl.h"
   #include "XSUB.h"
  +
  +#if defined(WIN32) && defined(USE_LARGE_FILES)
  +#   ifdef malloc
  +#      define perl_malloc malloc
  +#      undef malloc
  +#   endif
  +#   ifdef free
  +#      define perl_free free
  +#      undef free
  +#   endif
  +#endif
   
   #if (PERL_REVISION == 5) && (PERL_VERSION == 6)
   #   define MP_PERL_5_6_x
  
  
  


Reply via email to