diff options
author | Khem Raj <raj.khem@gmail.com> | 2020-04-13 14:42:44 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2020-04-13 14:46:22 -0700 |
commit | ea0d7b6a52a1e91e1c8e9c3ca6982cf8022c1f53 (patch) | |
tree | d3845a9208c8fe6e878af57c4fcf2a405701f1e6 | |
parent | 0e33b7e0c943b158d0cd3709f16bff230e316022 (diff) | |
download | meta-openembedded-ea0d7b6a52a1e91e1c8e9c3ca6982cf8022c1f53.tar.gz |
vlc: Add check to require X11
It needs X11 as of now to build. there is a possiblily to build it
without X11, but lets keep this check until that path is fixed
Also fixes
TOPDIR/build/tmp/work/aarch64-yoe-linux/vlc/3.0.9.2-r0/recipe-sysroot-native/usr/bin/aarch64-yoe-linux/aarch64-yoe-linux-ld: cannot find -lGL
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-multimedia/recipes-multimedia/vlc/vlc_3.0.9.2.bb | 4 |
1 files changed, 3 insertions, 1 deletions
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 9e41512c3..556e79c7e 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 | |||
@@ -25,7 +25,9 @@ SRC_URI = "http://download.videolan.org/pub/videolan/${BPN}/${PV}/${BP}.tar.xz \ | |||
25 | " | 25 | " |
26 | SRC_URI[sha256sum] = "a9bdad293d81cd48516abad8d490d8ab4012964ae541ff19e00021e071e47601" | 26 | SRC_URI[sha256sum] = "a9bdad293d81cd48516abad8d490d8ab4012964ae541ff19e00021e071e47601" |
27 | 27 | ||
28 | inherit autotools gettext pkgconfig features_check mime-xdg | 28 | inherit autotools features_check gettext pkgconfig features_check mime-xdg |
29 | |||
30 | REQUIRED_DISTRO_FEATURES = "x11" | ||
29 | 31 | ||
30 | ARM_INSTRUCTION_SET = "arm" | 32 | ARM_INSTRUCTION_SET = "arm" |
31 | export BUILDCC = "${BUILD_CC}" | 33 | export BUILDCC = "${BUILD_CC}" |