From 8bc702907ee3b511c876c8c7328178bb92e2d1df Mon Sep 17 00:00:00 2001 From: Ryan Bloom Date: Sun, 9 Jul 2000 23:12:44 +0000 Subject: [PATCH] Fix mpm_common for use with the real prefork MPM. This was broken when mpmt was added. This change can be removed when the MPM stuff calms down a bit and either mpmt or three separate MPMs are chosen. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85799 13f79535-47bb-0310-9956-ffa450edef68 --- server/mpm_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/mpm_common.c b/server/mpm_common.c index 3fffe39816..3613ccaa0e 100644 --- a/server/mpm_common.c +++ b/server/mpm_common.c @@ -81,7 +81,7 @@ #if defined(DEXTER) || defined(MPMT_BEOS_MPM) || defined(BEOS_MPM) #define CHILD_TABLE 1 #define CHILD_INFO_TABLE ap_child_table -#elif defined(MPMT_PTHREAD) || defined (NO_THREADS) +#elif defined(MPMT_PTHREAD) || defined (NO_THREADS) || defined(PREFORK_MPM) #define SCOREBOARD 1 #define CHILD_INFO_TABLE ap_scoreboard_image->parent #endif -- 2.50.1