summaryrefslogtreecommitdiff
path: root/support/suexec.c
diff options
context:
space:
mode:
authorGreg Stein <gstein@apache.org>2001-03-01 00:55:03 +0000
committerGreg Stein <gstein@apache.org>2001-03-01 00:55:03 +0000
commit8bcd220ae9039d7b11c4e0485af7126c59d862ac (patch)
tree112b49cee32bee74536070f6b40cf78c90dbe12b /support/suexec.c
parent7f17e1292a10c8e571818e2f2dbbe76261e1a72d (diff)
downloadhttpd-8bcd220ae9039d7b11c4e0485af7126c59d862ac.tar.gz
Don't directly include ap_config_auto.h directly. It isn't available on
Windows platforms. Including ap_config.h will pick it up, or it will grab the appropriate Windows header/defines. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88402 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'support/suexec.c')
-rw-r--r--support/suexec.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/support/suexec.c b/support/suexec.c
index c15a266d0c..234668dcbb 100644
--- a/support/suexec.c
+++ b/support/suexec.c
@@ -81,13 +81,12 @@
#include <stdlib.h>
#include "suexec.h"
-#include "ap_config_auto.h"
-#if HAVE_PWD_H
+#ifdef HAVE_PWD_H
#include <pwd.h>
#endif
-#if HAVE_GRP_H
+#ifdef HAVE_GRP_H
#include <grp.h>
#endif