From: Nitin A Kamble <[email protected]> This recipe needs 'opengl' distro feature enabled. Otherwise build fails with this error:
| intel.h:66:18: fatal error: dri2.h: No such file or directory Fixes bug: [YOCTO #5096] Signed-off-by: Nitin A Kamble <[email protected]> --- common/recipes-graphics/xorg-driver/xf86-video-intel_2.20.0.bb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/common/recipes-graphics/xorg-driver/xf86-video-intel_2.20.0.bb b/common/recipes-graphics/xorg-driver/xf86-video-intel_2.20.0.bb index 6cfca03..612e198 100644 --- a/common/recipes-graphics/xorg-driver/xf86-video-intel_2.20.0.bb +++ b/common/recipes-graphics/xorg-driver/xf86-video-intel_2.20.0.bb @@ -14,6 +14,9 @@ PR = "${INC_PR}.0" DEPENDS += "virtual/libx11 drm xf86driproto glproto \ virtual/libgl xineramaproto xf86driproto libpciaccess" +inherit distro_features_check +REQUIRED_DISTRO_FEATURES = "opengl" + PACKAGECONFIG ??= "" PACKAGECONFIG[sna] = "--enable-sna,--disable-sna" PACKAGECONFIG[xvmc] = "--enable-xvmc,--disable-xvmc,libxvmc" -- 1.8.1.4 _______________________________________________ meta-intel mailing list [email protected] https://lists.yoctoproject.org/listinfo/meta-intel
