diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2013-03-31 22:48:04 +0200 |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2013-03-31 22:48:04 +0200 |
commit | 7faf70512a81b30f09914602b6083cd83f6bf38f (patch) | |
tree | 8d107986fa023338adef5844126275e34695c1c6 | |
parent | f61d07903e32698f48ad54963af4452d4ff7f242 (diff) | |
download | cpython-git-7faf70512a81b30f09914602b6083cd83f6bf38f.tar.gz |
Issue #17591: Use lowercase filenames when including Windows header files.
Patch by Roumen Petrov.
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 3 | ||||
-rw-r--r-- | Modules/signalmodule.c | 2 | ||||
-rw-r--r-- | Objects/exceptions.c | 2 |
4 files changed, 6 insertions, 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. diff --git a/Modules/signalmodule.c b/Modules/signalmodule.c index 0e91450706..8b6c1c2388 100644 --- a/Modules/signalmodule.c +++ b/Modules/signalmodule.c @@ -9,7 +9,7 @@ #endif #ifdef MS_WINDOWS -#include <Windows.h> +#include <windows.h> #ifdef HAVE_PROCESS_H #include <process.h> #endif diff --git a/Objects/exceptions.c b/Objects/exceptions.c index 6b04700621..79bbb8f2ff 100644 --- a/Objects/exceptions.c +++ b/Objects/exceptions.c @@ -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 |