vlc: fix loop initial declarations are only allowed in C99 mode

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 <akuster808@gmail.com>
This commit is contained in:
Armin Kuster 2020-08-31 07:38:56 -07:00
parent fd16ab3d64
commit eec787e19b

View File

@ -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 \