From 7faf70512a81b30f09914602b6083cd83f6bf38f Mon Sep 17 00:00:00 2001 From: Antoine Pitrou Date: Sun, 31 Mar 2013 22:48:04 +0200 Subject: Issue #17591: Use lowercase filenames when including Windows header files. Patch by Roumen Petrov. --- Misc/ACKS | 1 + Misc/NEWS | 3 +++ Modules/signalmodule.c | 2 +- Objects/exceptions.c | 2 +- 4 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Misc/ACKS b/Misc/ACKS index 21f2cd5..7c7ad78 100644 --- a/Misc/ACKS +++ b/Misc/ACKS @@ -943,6 +943,7 @@ Tim Peters Benjamin Peterson Joe Peterson Chris Petrilli +Roumen Petrov Bjorn Pettersen Justin D. Pettit Ronny Pfannschmidt diff --git a/Misc/NEWS b/Misc/NEWS index 03b3c4f..9a64abb 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -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 0e91450..8b6c1c2 100644 --- a/Modules/signalmodule.c +++ b/Modules/signalmodule.c @@ -9,7 +9,7 @@ #endif #ifdef MS_WINDOWS -#include +#include #ifdef HAVE_PROCESS_H #include #endif diff --git a/Objects/exceptions.c b/Objects/exceptions.c index 6b04700..79bbb8f 100644 --- a/Objects/exceptions.c +++ b/Objects/exceptions.c @@ -2327,7 +2327,7 @@ PyObject *PyExc_RecursionErrorInst = NULL; } #ifdef MS_WINDOWS -#include +#include /* The following constants were added to errno.h in VS2010 but have preferred WSA equivalents. */ #undef EADDRINUSE -- cgit v0.12