Skip to content

Commit 7faf705

Browse files
committed
Issue #17591: Use lowercase filenames when including Windows header files.
Patch by Roumen Petrov.
1 parent f61d079 commit 7faf705

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

Misc/ACKS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -943,6 +943,7 @@ Tim Peters
943943
Benjamin Peterson
944944
Joe Peterson
945945
Chris Petrilli
946+
Roumen Petrov
946947
Bjorn Pettersen
947948
Justin D. Pettit
948949
Ronny Pfannschmidt

Misc/NEWS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1163,6 +1163,9 @@ Tests
11631163
Build
11641164
-----
11651165

1166+
- Issue #17591: Use lowercase filenames when including Windows header files.
1167+
Patch by Roumen Petrov.
1168+
11661169
- Issue #17550: Fix the --enable-profiling configure switch.
11671170

11681171
- Issue #17425: Build with openssl 1.0.1d on Windows.

Modules/signalmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#endif
1010

1111
#ifdef MS_WINDOWS
12-
#include <Windows.h>
12+
#include <windows.h>
1313
#ifdef HAVE_PROCESS_H
1414
#include <process.h>
1515
#endif

Objects/exceptions.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2327,7 +2327,7 @@ PyObject *PyExc_RecursionErrorInst = NULL;
23272327
}
23282328

23292329
#ifdef MS_WINDOWS
2330-
#include <Winsock2.h>
2330+
#include <winsock2.h>
23312331
/* The following constants were added to errno.h in VS2010 but have
23322332
preferred WSA equivalents. */
23332333
#undef EADDRINUSE

0 commit comments

Comments
 (0)