aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
authorGlenn Morris2018-07-28 07:50:36 -0700
committerGlenn Morris2018-07-28 07:50:36 -0700
commit4713f5d7423f0a8f2a2dd147cec70982145562d6 (patch)
treeb052f21a286e65e2030119246b9ddf8fa8a716cf /lib-src
parent1bcf5d02da96784a04034b4c0aba8fdfa1413c4e (diff)
parentbd52f37cae3fbc25e576f9b0a1ba42596790965f (diff)
downloademacs-4713f5d7423f0a8f2a2dd147cec70982145562d6.tar.gz
emacs-4713f5d7423f0a8f2a2dd147cec70982145562d6.zip
Merge from origin/emacs-26
bd52f37 (origin/emacs-26) ; Fix last change: only MinGW runtime 5.0.2... 024d20f Fix compilation with mingw.org's MinGW 5.x headers 38b6748 Update the list of special forms in the ELisp manual 8579105 Don't fail to indent-sexp before a full sexp (Bug#31984) d24c5f2 Fix calls to modifications hooks in replace-buffer-contents 71a9151 * src/character.c (char_width): Support glyphs with faces. (... 0feb673 Display raw bytes as belonging to 'eight-bit' charset 2e2f00f ; * doc/emacs/mule.texi (International Chars): Fix last change. 00561b5 Fix inaccurate text in the user manual 5cfb7a3 Copyedits in tramp.texi, improved example with bash's readline 6f8f358 Minor Tramp doc update 2585fcb File Shadowing is not available on MS Windows 39da592 ; Minor markup change in indent.texi 2f00ffe ; bookmark-jump: Add comment about last change.
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/pop.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/lib-src/pop.c b/lib-src/pop.c
index 10aac957d4b..731f951fd14 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/>. */
30#include "ntlib.h" 30#include "ntlib.h"
31#undef _WIN32_WINNT 31#undef _WIN32_WINNT
32#define _WIN32_WINNT 0x0501 /* for getaddrinfo stuff */ 32#define _WIN32_WINNT 0x0501 /* for getaddrinfo stuff */
33#include <winsock2.h> 33#if defined __MINGW32_VERSION && __MINGW32_VERSION >= 5000002L
34#include <ws2tcpip.h> 34# include <windows.h>
35#else
36# include <winsock2.h>
37#endif
38# include <ws2tcpip.h>
35#undef getaddrinfo 39#undef getaddrinfo
36#define getaddrinfo sys_getaddrinfo 40#define getaddrinfo sys_getaddrinfo
37#undef freeaddrinfo 41#undef freeaddrinfo