mirror of
https://github.com/python/cpython.git
synced 2025-09-26 10:19:53 +00:00
Issue #17591: Use lowercase filenames when including Windows header files.
Patch by Roumen Petrov.
This commit is contained in:
parent
f61d07903e
commit
7faf70512a
4 changed files with 6 additions and 2 deletions
|
@ -943,6 +943,7 @@ Tim Peters
|
|||
Benjamin Peterson
|
||||
Joe Peterson
|
||||
Chris Petrilli
|
||||
Roumen Petrov
|
||||
Bjorn Pettersen
|
||||
Justin D. Pettit
|
||||
Ronny Pfannschmidt
|
||||
|
|
|
@ -1163,6 +1163,9 @@ Tests
|
|||
Build
|
||||
-----
|
||||
|
||||
- Issue #17591: Use lowercase filenames when including Windows header files.
|
||||
Patch by Roumen Petrov.
|
||||
|
||||
- Issue #17550: Fix the --enable-profiling configure switch.
|
||||
|
||||
- Issue #17425: Build with openssl 1.0.1d on Windows.
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
#endif
|
||||
|
||||
#ifdef MS_WINDOWS
|
||||
#include <Windows.h>
|
||||
#include <windows.h>
|
||||
#ifdef HAVE_PROCESS_H
|
||||
#include <process.h>
|
||||
#endif
|
||||
|
|
|
@ -2327,7 +2327,7 @@ PyObject *PyExc_RecursionErrorInst = NULL;
|
|||
}
|
||||
|
||||
#ifdef MS_WINDOWS
|
||||
#include <Winsock2.h>
|
||||
#include <winsock2.h>
|
||||
/* The following constants were added to errno.h in VS2010 but have
|
||||
preferred WSA equivalents. */
|
||||
#undef EADDRINUSE
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue