From: Brian Havard Date: Sun, 21 Jan 2001 14:52:12 +0000 (+0000) Subject: Add headers needed for getpwnam & getgrnam prototypes & types. X-Git-Tag: APACHE_2_0_BETA_CANDIDATE_1~141 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8bd414722f5e31b4fb7a79c5de2668829ea17c97;p=thirdparty%2Fapache%2Fhttpd.git Add headers needed for getpwnam & getgrnam prototypes & types. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87777 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm_common.c b/server/mpm_common.c index 375eadd7915..83d339e9586 100644 --- a/server/mpm_common.c +++ b/server/mpm_common.c @@ -78,6 +78,13 @@ #include "mpm.h" #include "mpm_common.h" +#ifdef HAVE_PWD_H +#include +#endif +#ifdef HAVE_GRP_H +#include +#endif + #ifdef MPM_NEEDS_RECLAIM_CHILD_PROCESSES void ap_reclaim_child_processes(int terminate) {