diff options
author | Greg Stein <gstein@apache.org> | 2001-03-01 01:55:03 +0100 |
---|---|---|
committer | Greg Stein <gstein@apache.org> | 2001-03-01 01:55:03 +0100 |
commit | 8bcd220ae9039d7b11c4e0485af7126c59d862ac (patch) | |
tree | 112b49cee32bee74536070f6b40cf78c90dbe12b /support/suexec.c | |
parent | Fix a problem displaying status when a threaded MPM is used. (diff) | |
download | apache2-8bcd220ae9039d7b11c4e0485af7126c59d862ac.tar.xz apache2-8bcd220ae9039d7b11c4e0485af7126c59d862ac.zip |
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.c | 5 |
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 |