meson: Don't set c_std to gnu99

Use the default for each compiler on every platform instead. This
improves our compatibility with compilers that don't have gnu99 as
a c_std.
This commit is contained in:
Nirbheek Chauhan 2016-10-15 22:11:08 +05:30
parent 887a5911f5
commit 19f6559582

View file

@ -2,7 +2,6 @@ project('gst-plugins-good', 'c', 'cpp',
version : '1.9.90', version : '1.9.90',
meson_version : '>= 0.35.0', meson_version : '>= 0.35.0',
default_options : [ 'warning_level=1', default_options : [ 'warning_level=1',
'c_std=gnu99',
'buildtype=debugoptimized' ]) 'buildtype=debugoptimized' ])
gst_version = meson.project_version() gst_version = meson.project_version()