From 333ebf30c32a7897eac31063c3a70e62a717ec93 Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Thu, 22 Mar 2001 12:32:21 +0000 Subject: [PATCH] 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 --- include/mpm_common.h | 2 ++ 1 file changed, 2 insertions(+) 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 -- 2.40.0