From: Jeff Trawick Date: Thu, 22 Mar 2001 12:32:21 +0000 (+0000) Subject: Get rid of some warnings which crept into the Unix MPMs a X-Git-Tag: 2.0.15~9 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=333ebf30c32a7897eac31063c3a70e62a717ec93;p=apache Get rid of some warnings which crept into the Unix MPMs a few days ago. mpm_common.h started referencing AP_MPM_NEEDS_RECLAIM_CHILD_PROCESSES but did not include the header file where this might be defined. The result was no prototype for ap_reclaim_child_processes() on platforms which needed it. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88562 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/include/mpm_common.h b/include/mpm_common.h index 4d063b8ff4..1873dd9778 100644 --- a/include/mpm_common.h +++ b/include/mpm_common.h @@ -76,6 +76,8 @@ #include /* for TCP_NODELAY */ #endif +#include "mpm.h" /* for AP_MPM_NEEDS_RECLAIM_CHILD_PROCESSES setting */ + #ifdef __cplusplus extern "C" { #endif