diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2016-10-15 22:21:24 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2016-10-15 22:21:51 +0530 |
commit | f8f0cf7374b221562d35014b2dd8fa6ac1299679 (patch) | |
tree | cf4272706c0debb66de1782de8b4113f28577e46 | |
parent | 1d6167f07dae8ddb53350213d431253132060c26 (diff) |
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.
-rw-r--r-- | meson.build | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/meson.build b/meson.build index b4d330e8..319818e0 100644 --- a/meson.build +++ b/meson.build @@ -2,7 +2,6 @@ project('gst-editing-services', 'c', version : '1.9.90', meson_version : '>= 0.35.0', default_options : [ 'warning_level=1', - 'c_std=gnu99', 'buildtype=debugoptimized' ]) gst_version = meson.project_version() |