diff options
author | Ryan Bloom <rbb@apache.org> | 2000-07-10 01:12:44 +0200 |
---|---|---|
committer | Ryan Bloom <rbb@apache.org> | 2000-07-10 01:12:44 +0200 |
commit | 8bc702907ee3b511c876c8c7328178bb92e2d1df (patch) | |
tree | 2995731dfcb946b3f47699a9a90af5fbe8422cbd /server/mpm_common.c | |
parent | Fix building the mpmt MPM. The problem was that IfModule uses the name of (diff) | |
download | apache2-8bc702907ee3b511c876c8c7328178bb92e2d1df.tar.xz apache2-8bc702907ee3b511c876c8c7328178bb92e2d1df.zip |
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
Diffstat (limited to 'server/mpm_common.c')
-rw-r--r-- | server/mpm_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 |