diff options
author | Eli Zaretskii <eliz@gnu.org> | 2018-07-28 15:34:00 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2018-07-28 15:34:00 +0300 |
commit | 024d20f81e643fe1739d28d16501a8c4f7a860c6 (patch) | |
tree | ffd64f180b8ac8d5f07d3345ab7edec8c19f496a /lib-src | |
parent | 38b67488566de6f7c9b405ae62664b16ab135713 (diff) | |
download | emacs-024d20f81e643fe1739d28d16501a8c4f7a860c6.tar.gz emacs-024d20f81e643fe1739d28d16501a8c4f7a860c6.tar.bz2 emacs-024d20f81e643fe1739d28d16501a8c4f7a860c6.zip |
Fix compilation with mingw.org's MinGW 5.x headers
Diffstat (limited to 'lib-src')
-rw-r--r-- | lib-src/pop.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lib-src/pop.c b/lib-src/pop.c index 10aac957d4b..0b9204576bd 100644 --- a/lib-src/pop.c +++ b/lib-src/pop.c @@ -30,8 +30,12 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */ #include "ntlib.h" #undef _WIN32_WINNT #define _WIN32_WINNT 0x0501 /* for getaddrinfo stuff */ -#include <winsock2.h> -#include <ws2tcpip.h> +#if defined __MINGW32_VERSION && __MINGW32_VERSION >= 5000000L +# include <windows.h> +#else +# include <winsock2.h> +#endif +# include <ws2tcpip.h> #undef getaddrinfo #define getaddrinfo sys_getaddrinfo #undef freeaddrinfo |