diff options
author | David Reid <dreid@apache.org> | 2000-06-19 23:11:49 +0200 |
---|---|---|
committer | David Reid <dreid@apache.org> | 2000-06-19 23:11:49 +0200 |
commit | e67a4b2f8021b167a330ca0f2924e31df7792023 (patch) | |
tree | e64d9f90c4631efe4c5897a8fe940115b833cccf /server/mpm_common.c | |
parent | Get rid of more compiler warnings. (diff) | |
download | apache2-e67a4b2f8021b167a330ca0f2924e31df7792023.tar.xz apache2-e67a4b2f8021b167a330ca0f2924e31df7792023.zip |
Update mpm_common to work with the latest BeOS version and start
adding support for a new BeOS MPM that I'll commit in a few days.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85621 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/mpm_common.c')
-rw-r--r-- | server/mpm_common.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/server/mpm_common.c b/server/mpm_common.c index 8874fb7cde..cd2f54c69d 100644 --- a/server/mpm_common.c +++ b/server/mpm_common.c @@ -77,8 +77,11 @@ #if HAVE_SYS_TIME_H #include <sys/time.h> /* for timeval definitions */ #endif +#ifdef BEOS_BONE +#include <sys/socket.h> +#endif -#if defined(DEXTER_MPM) || defined(MPMT_BEOS_MPM) +#if defined(DEXTER_MPM) || defined(MPMT_BEOS_MPM) || defined(MPM_BEOS) #define CHILD_TABLE 1 #define CHILD_INFO_TABLE ap_child_table #elif defined(MPMT_PTHREAD_MPM) || defined (PREFORK_MPM) |