diff options
author | Reinette Chatre <reinette.chatre@intel.com> | 2015-08-20 14:34:33 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-08-24 23:47:05 +0100 |
commit | 6b0768e4384967bad1f58e4c9c5c161abc22dba7 (patch) | |
tree | f6030f83ce56443a8b73376492cdf5a0a4dac5ec /meta/recipes-graphics/xorg-driver | |
parent | 311c428636ce218b8fbdb67afc166dd7e61fba82 (diff) | |
download | poky-6b0768e4384967bad1f58e4c9c5c161abc22dba7.tar.gz |
xf86-video-intel: enable xvmc feature by default and fix dependency
XvMC extends the X Video extension (Xv) and enables hardware rendered
motion compensation support. In a test build enabling this feature
increased the size of the xf86-video-intel package from 1386841 to
1847154 bytes.
When we enable the xvmc feature in xf86-video-intel we see the
following QA issue reported:
QA Issue: xf86-video-intel rdepends on xcb-util, but it isn't
a build dependency?
We fix this by ensuring the build dependencies are set correctly when
the xvmc feature is enabled.
(From OE-Core rev: 9f625c2e6cc5c42d047ad33d5354522c18f2d6b7)
Signed-off-by: Reinette Chatre <reinette.chatre@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/xorg-driver')
-rw-r--r-- | meta/recipes-graphics/xorg-driver/xf86-video-intel_2.99.917.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-graphics/xorg-driver/xf86-video-intel_2.99.917.bb b/meta/recipes-graphics/xorg-driver/xf86-video-intel_2.99.917.bb index 0ab7380506..5a3e06ccbd 100644 --- a/meta/recipes-graphics/xorg-driver/xf86-video-intel_2.99.917.bb +++ b/meta/recipes-graphics/xorg-driver/xf86-video-intel_2.99.917.bb | |||
@@ -19,7 +19,7 @@ SRC_URI[sha256sum] = "00b781eea055582820a123c47b62411bdf6aabf4f03dc0568faec55faf | |||
19 | 19 | ||
20 | DEPENDS += "virtual/libx11 drm libpciaccess pixman" | 20 | DEPENDS += "virtual/libx11 drm libpciaccess pixman" |
21 | 21 | ||
22 | PACKAGECONFIG ??= "sna udev ${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'dri dri1 dri2', '', d)}" | 22 | PACKAGECONFIG ??= "xvmc sna udev ${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'dri dri1 dri2', '', d)}" |
23 | 23 | ||
24 | PACKAGECONFIG[dri] = "--enable-dri,--disable-dri" | 24 | PACKAGECONFIG[dri] = "--enable-dri,--disable-dri" |
25 | PACKAGECONFIG[dri1] = "--enable-dri1,--disable-dri1,xf86driproto" | 25 | PACKAGECONFIG[dri1] = "--enable-dri1,--disable-dri1,xf86driproto" |
@@ -28,7 +28,7 @@ PACKAGECONFIG[dri3] = "--enable-dri3,--disable-dri3,dri3proto" | |||
28 | PACKAGECONFIG[sna] = "--enable-sna,--disable-sna" | 28 | PACKAGECONFIG[sna] = "--enable-sna,--disable-sna" |
29 | PACKAGECONFIG[uxa] = "--enable-uxa,--disable-uxa" | 29 | PACKAGECONFIG[uxa] = "--enable-uxa,--disable-uxa" |
30 | PACKAGECONFIG[udev] = "--enable-udev,--disable-udev,udev" | 30 | PACKAGECONFIG[udev] = "--enable-udev,--disable-udev,udev" |
31 | PACKAGECONFIG[xvmc] = "--enable-xvmc,--disable-xvmc,libxvmc" | 31 | PACKAGECONFIG[xvmc] = "--enable-xvmc,--disable-xvmc,libxvmc xcb-util" |
32 | PACKAGECONFIG[tools] = "--enable-tools,--disable-tools,libxinerama libxrandr libxdamage libxfixes libxcursor libxtst libxext libxrender" | 32 | PACKAGECONFIG[tools] = "--enable-tools,--disable-tools,libxinerama libxrandr libxdamage libxfixes libxcursor libxtst libxext libxrender" |
33 | 33 | ||
34 | # --enable-kms-only option is required by ROOTLESS_X | 34 | # --enable-kms-only option is required by ROOTLESS_X |