mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +00:00
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:
parent
fd16ab3d64
commit
eec787e19b
|
|
@ -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 \
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user