Return-Path: Delivered-To: apmail-modperl-cvs-archive@apache.org Received: (qmail 59684 invoked by uid 500); 25 Nov 2002 01:31:01 -0000 Mailing-List: contact modperl-cvs-help@perl.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: list-post: Reply-To: dev@perl.apache.org Delivered-To: mailing list modperl-cvs@apache.org Received: (qmail 59673 invoked by uid 500); 25 Nov 2002 01:31:01 -0000 Delivered-To: apmail-modperl-2.0-cvs@apache.org Date: 25 Nov 2002 01:31:00 -0000 Message-ID: <20021125013100.54613.qmail@icarus.apache.org> From: dougm@apache.org To: modperl-2.0-cvs@apache.org Subject: cvs commit: modperl-2.0/src/modules/perl modperl_perl_includes.h X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N dougm 2002/11/24 17:31:00 Modified: . Changes src/modules/perl modperl_perl_includes.h Log: Submitted by: Randy Kobes 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 ] + fix for directive handlers within vhosts using threaded MPMs [Stephen Clouse ] 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