Kaydet (Commit) 7faf7051 authored tarafından Antoine Pitrou's avatar Antoine Pitrou

Issue #17591: Use lowercase filenames when including Windows header files.

Patch by Roumen Petrov.
üst f61d0790
...@@ -943,6 +943,7 @@ Tim Peters ...@@ -943,6 +943,7 @@ Tim Peters
Benjamin Peterson Benjamin Peterson
Joe Peterson Joe Peterson
Chris Petrilli Chris Petrilli
Roumen Petrov
Bjorn Pettersen Bjorn Pettersen
Justin D. Pettit Justin D. Pettit
Ronny Pfannschmidt Ronny Pfannschmidt
......
...@@ -1163,6 +1163,9 @@ Tests ...@@ -1163,6 +1163,9 @@ Tests
Build Build
----- -----
- Issue #17591: Use lowercase filenames when including Windows header files.
Patch by Roumen Petrov.
- Issue #17550: Fix the --enable-profiling configure switch. - Issue #17550: Fix the --enable-profiling configure switch.
- Issue #17425: Build with openssl 1.0.1d on Windows. - Issue #17425: Build with openssl 1.0.1d on Windows.
......
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
#endif #endif
#ifdef MS_WINDOWS #ifdef MS_WINDOWS
#include <Windows.h> #include <windows.h>
#ifdef HAVE_PROCESS_H #ifdef HAVE_PROCESS_H
#include <process.h> #include <process.h>
#endif #endif
......
...@@ -2327,7 +2327,7 @@ PyObject *PyExc_RecursionErrorInst = NULL; ...@@ -2327,7 +2327,7 @@ PyObject *PyExc_RecursionErrorInst = NULL;
} }
#ifdef MS_WINDOWS #ifdef MS_WINDOWS
#include <Winsock2.h> #include <winsock2.h>
/* The following constants were added to errno.h in VS2010 but have /* The following constants were added to errno.h in VS2010 but have
preferred WSA equivalents. */ preferred WSA equivalents. */
#undef EADDRINUSE #undef EADDRINUSE
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment