0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-19 19:42:24 +02:00

meson: don't define __USE_MINGW_ANSI_STDIO

It is defined automatically when needed, which is almost never we don't
support Windows XP.

See: bfd33f6c0e
This commit is contained in:
Kacper Michajłow 2023-11-24 05:44:59 +01:00 committed by sfan5
parent 19b27341a9
commit dff48031a1

View File

@ -308,7 +308,7 @@ mswin_flags = ['-D_WIN32_WINNT=0x0602', '-DUNICODE', '-DCOBJMACROS',
'-DINITGUID', '-U__STRICT_ANSI__']
if host_machine.system() == 'windows'
flags += [mswin_flags, '-D__USE_MINGW_ANSI_STDIO=1']
flags += [mswin_flags]
endif
if host_machine.system() == 'cygwin'