diff options
author | Maxim Dounin <mdounin@mdounin.ru> | 2016-12-24 18:01:14 +0300 |
---|---|---|
committer | Maxim Dounin <mdounin@mdounin.ru> | 2016-12-24 18:01:14 +0300 |
commit | ca1c3818f7bd6f510ed598629d20e6294247ad89 (patch) | |
tree | 3c2e9ad43cccd8b0332101f71b5089d61fa9b42e | |
parent | 25fb9595bba78a4b287da7db1df5025302e3c025 (diff) | |
download | nginx-ca1c3818f7bd6f510ed598629d20e6294247ad89.tar.gz nginx-ca1c3818f7bd6f510ed598629d20e6294247ad89.zip |
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.
-rw-r--r-- | src/os/win32/ngx_win32_config.h | 2 |
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> |