Third try, follows up 1694901 and 1694902

MinGW32 and MSVC both define WIN32
MSVC and Netware do not use autoconf


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1694912 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gregg Lewis Smith
2015-08-09 21:33:02 +00:00
parent e66086d310
commit 4c24014620

View File

@ -17,7 +17,7 @@
#include "httpd.h"
#include "http_config.h"
#include "apr_strings.h"
#if (!defined(WIN32) && !defined(NETWARE))
#if !defined(_MSC_VER) && !defined(NETWARE)
#include "ap_config_auto.h"
#endif