diff options
| author | 2015-07-09 14:59:53 -0400 | |
|---|---|---|
| committer | 2015-07-09 15:00:00 -0400 | |
| commit | 48ef2a60f3e3ce81bf569c2698b197978d01fe00 (patch) | |
| tree | 38764e6fbaa01361d85de4ae94ccc3667f5babb8 /3rdparty | |
| parent | 5caf281feebeb2fffc44a9b5470d1924b1203f27 (diff) | |
Don't redefine MONGOOSE_ENABLE_THREADS on Windows
Diffstat (limited to '3rdparty')
| -rw-r--r-- | 3rdparty/mongoose/mongoose.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/3rdparty/mongoose/mongoose.c b/3rdparty/mongoose/mongoose.c index c3f72621ab9..fce6e0405b6 100644 --- a/3rdparty/mongoose/mongoose.c +++ b/3rdparty/mongoose/mongoose.c @@ -63,7 +63,7 @@ #pragma warning (disable : 4204) // missing c99 support #endif -#if defined(_WIN32) && !defined(MONGOOSE_NO_CGI) +#if defined(_WIN32) && !defined(MONGOOSE_NO_CGI) && !defined(MONGOOSE_ENABLE_THREADS) #define MONGOOSE_ENABLE_THREADS /* Windows uses stdio threads for CGI */ #endif |
