From eec787e19bca513726f9fdcb8a0275101a00c93a Mon Sep 17 00:00:00 2001 From: Armin Kuster Date: Mon, 31 Aug 2020 07:38:56 -0700 Subject: [PATCH] vlc: fix loop initial declarations are only allowed in C99 mode MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit build issue seen on CentOS7 and Aarch64 machine Fixes: ../../vlc-3.0.9.2/src/misc/fourcc_gen.c:75:5: error: ‘for’ loop initial declarations are only allowed in C99 mode | for (size_t i = 0; i < n; i++) | ^ | ../../vlc-3.0.9.2/src/misc/fourcc_gen.c:75:5: note: use option -std=c99 or -std=gnu99 to compile your code Signed-off-by: Armin Kuster --- meta-multimedia/recipes-multimedia/vlc/vlc_3.0.9.2.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-multimedia/recipes-multimedia/vlc/vlc_3.0.9.2.bb b/meta-multimedia/recipes-multimedia/vlc/vlc_3.0.9.2.bb index f6c7a606d5..b1aa82cc89 100644 --- a/meta-multimedia/recipes-multimedia/vlc/vlc_3.0.9.2.bb +++ b/meta-multimedia/recipes-multimedia/vlc/vlc_3.0.9.2.bb @@ -30,7 +30,7 @@ inherit autotools features_check gettext pkgconfig mime-xdg REQUIRED_DISTRO_FEATURES = "x11" -export BUILDCC = "${BUILD_CC}" +export BUILDCC = "${BUILD_CC} -std=c99" EXTRA_OECONF = "\ --enable-run-as-root \ --enable-xvideo \