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

meson: remove -D_ISOC99_SOURCE flag

The meson build has always compiled with c_std=c11. This was never
really needed.
This commit is contained in:
Dudemanguy 2023-10-20 17:13:50 -05:00
parent 94b67355c2
commit 57fedcfcda

View File

@ -251,8 +251,7 @@ sources = files(
# compiler stuff
cc = meson.get_compiler('c')
flags = ['-D_ISOC99_SOURCE', '-D_GNU_SOURCE',
'-D_FILE_OFFSET_BITS=64']
flags = ['-D_GNU_SOURCE', '-D_FILE_OFFSET_BITS=64']
link_flags = []
test_flags = ['-Werror=implicit-function-declaration',