diff options
author | Gregg Lewis Smith <gsmith@apache.org> | 2015-08-09 23:33:02 +0200 |
---|---|---|
committer | Gregg Lewis Smith <gsmith@apache.org> | 2015-08-09 23:33:02 +0200 |
commit | 4c24014620c7e1d1d32706e3e88068b0455ab4a4 (patch) | |
tree | 17d2c408c838e4746798a78cdd505c10234250ed /modules/dav/fs/mod_dav_fs.c | |
parent | Add include path for NetWare build. (diff) | |
download | apache2-4c24014620c7e1d1d32706e3e88068b0455ab4a4.tar.xz apache2-4c24014620c7e1d1d32706e3e88068b0455ab4a4.zip |
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
Diffstat (limited to '')
-rw-r--r-- | modules/dav/fs/mod_dav_fs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/dav/fs/mod_dav_fs.c b/modules/dav/fs/mod_dav_fs.c index 4a3062cb95..c49d7045b5 100644 --- a/modules/dav/fs/mod_dav_fs.c +++ b/modules/dav/fs/mod_dav_fs.c @@ -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 |