diff options
author | Gregg Lewis Smith <gsmith@apache.org> | 2015-08-09 21:21:44 +0200 |
---|---|---|
committer | Gregg Lewis Smith <gsmith@apache.org> | 2015-08-09 21:21:44 +0200 |
commit | 1e9ab84c6dab3798f6342840a1de587754a1611c (patch) | |
tree | 35c9fc4f60cabb3981df880a6c51d8afb56e2d90 /modules/dav/fs/mod_dav_fs.c | |
parent | xforms (diff) | |
download | apache2-1e9ab84c6dab3798f6342840a1de587754a1611c.tar.xz apache2-1e9ab84c6dab3798f6342840a1de587754a1611c.zip |
ap_config_auto.h is not used/created in non-Autoconf compilers like MSVC
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1694901 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | modules/dav/fs/mod_dav_fs.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/dav/fs/mod_dav_fs.c b/modules/dav/fs/mod_dav_fs.c index 78039c9b98..510325cfff 100644 --- a/modules/dav/fs/mod_dav_fs.c +++ b/modules/dav/fs/mod_dav_fs.c @@ -17,7 +17,9 @@ #include "httpd.h" #include "http_config.h" #include "apr_strings.h" +#if (!defined(WIN32) && !defined(NETWARE)) || defined(__MINGW32__) #include "ap_config_auto.h" +#endif #include "mod_dav.h" #include "repos.h" |