mirror of
https://gitee.com/openharmony/third_party_mesa3d
synced 2024-11-27 01:20:36 +00:00
meson: correct windows-version define
The macro "_WINVER" does nothing, the macro definitions that matter for
windows API version selection are "_WIN32_WINNT" and "WINVER".
The header "sdkddkver.h" (which is included from thousands of
different windows-headers) defines "WINVER" to the same value as
"_WIN32_WINNT" of only the latter is defined, which explains why this
works right now. But we shouldn't depend on that kind of luck, and
instead define the right maco.
Fixes: 3aee462781
("meson: add windows compiler checks and libraries")
Acked-by: Dylan Baker <dylan@pnwbakers.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4681>
This commit is contained in:
parent
32d871b48f
commit
7f17a0a809
@ -899,7 +899,7 @@ elif host_machine.system() == 'sunos'
|
||||
pre_args += '-D__EXTENSIONS__'
|
||||
elif host_machine.system() == 'windows'
|
||||
pre_args += [
|
||||
'-D_WINDOWS', '-D_WIN32_WINNT=0x0601', '-D_WINVER=0x0601',
|
||||
'-D_WINDOWS', '-D_WIN32_WINNT=0x0601', '-DWINVER=0x0601',
|
||||
'-DPIPE_SUBSYSTEM_WINDOWS_USER',
|
||||
'-D_USE_MATH_DEFINES', # XXX: scons doesn't use this for mingw
|
||||
]
|
||||
|
Loading…
Reference in New Issue
Block a user