Skip to content

Commit d430ccc

Browse files
committed
Fix WMI module naming
1 parent fe5cac1 commit d430ccc

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Makefile.pre.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ CONFIGURE_LDFLAGS= @LDFLAGS@
104104
# values.
105105
PY_CFLAGS= $(BASECFLAGS) $(OPT) $(CONFIGURE_CFLAGS) $(CFLAGS) $(EXTRA_CFLAGS)
106106
PY_CFLAGS_NODIST=$(CONFIGURE_CFLAGS_NODIST) $(CFLAGS_NODIST) -I$(srcdir)/Include/internal -I$(srcdir)/Include/internal/mimalloc
107-
PY_CXXFLAGS_NODIST=$(filter-out -std=c11,$(PY_CFLAGS_NODIST)) -std=c++17
107+
PY_CXXFLAGS_NODIST=$(filter-out -std=c11,$(PY_CFLAGS_NODIST)) -std=c++20
108108
# Both CPPFLAGS and LDFLAGS need to contain the shell's value for setup.py to
109109
# be able to build extension modules using the directories specified in the
110110
# environment variables

Modules/Setup.stdlib.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@
159159
# Windows specific modules
160160

161161
@MODULE__OVERLAPPED_TRUE@_overlapped overlapped.c
162-
@MODULE__WMIMODULE_TRUE@_wmimodule ../PC/_wmimodule.cpp
162+
@MODULE__WMI_TRUE@_wmi ../PC/_wmimodule.cpp
163163
@MODULE_WINSOUND_TRUE@winsound ../PC/winsound.c
164164

165165

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8392,7 +8392,7 @@ dnl windows specific modules
83928392
PY_STDLIB_MOD([winreg], [test "$MACHDEP" = "win32"])
83938393
PY_STDLIB_MOD([msvcrt], [test "$MACHDEP" = "win32"])
83948394
PY_STDLIB_MOD([_winapi], [test "$MACHDEP" = "win32"])
8395-
PY_STDLIB_MOD([_wmimodule], [test "$MACHDEP" = "win32"], [], [],
8395+
PY_STDLIB_MOD([_wmi], [test "$MACHDEP" = "win32"], [], [],
83968396
[-lwbemuuid -lpropsys -lole32 -loleaut32 -luuid])
83978397
PY_STDLIB_MOD([winsound], [test "$MACHDEP" = "win32"], [], [],
83988398
[-lwinmm])

0 commit comments

Comments
 (0)