From 77e26de12ef8ec6e3c245acee65815546ecd259f Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Sat, 15 Oct 2016 22:20:40 +0530 Subject: [PATCH] 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. --- meson.build | 1 - 1 file changed, 1 deletion(-) diff --git a/meson.build b/meson.build index 9441d78..b4f659e 100644 --- a/meson.build +++ b/meson.build @@ -2,7 +2,6 @@ project('gst-libav', 'c', 'cpp', version : '1.9.2.1', meson_version : '>= 0.33.0', default_options : [ 'warning_level=1', - 'c_std=gnu99', 'buildtype=debugoptimized' ]) gst_version = meson.project_version() -- 2.7.4