From 1e9ab84c6dab3798f6342840a1de587754a1611c Mon Sep 17 00:00:00 2001
From: Gregg Lewis Smith <gsmith@apache.org>
Date: Sun, 9 Aug 2015 19:21:44 +0000
Subject: [PATCH] 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
---
 modules/dav/fs/mod_dav_fs.c | 2 ++
 1 file changed, 2 insertions(+)

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"
-- 
2.40.0