Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Dounin <mdounin@mdounin.ru>2016-12-24 18:01:14 +0300
committerMaxim Dounin <mdounin@mdounin.ru>2016-12-24 18:01:14 +0300
commitca1c3818f7bd6f510ed598629d20e6294247ad89 (patch)
tree3c2e9ad43cccd8b0332101f71b5089d61fa9b42e /src/os/win32
parent25fb9595bba78a4b287da7db1df5025302e3c025 (diff)
Win32: stdint.h used for MinGW GCC.
There is no need to restrict stdint.h only to MinGW-w64 GCC, it is available with MinGW GCC as well.
Diffstat (limited to 'src/os/win32')
-rw-r--r--src/os/win32/ngx_win32_config.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os/win32/ngx_win32_config.h b/src/os/win32/ngx_win32_config.h
index 7f73e07a5..fa5aea3d2 100644
--- a/src/os/win32/ngx_win32_config.h
+++ b/src/os/win32/ngx_win32_config.h
@@ -58,7 +58,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
-#ifdef __MINGW64_VERSION_MAJOR
+#ifdef __GNUC__
#include <stdint.h>
#endif
#include <ctype.h>