diff options
| author | Martin Kelly <mkelly@xevo.com> | 2017-06-23 15:48:41 -0700 |
|---|---|---|
| committer | Martin Jansa <Martin.Jansa@gmail.com> | 2017-07-01 09:59:25 +0200 |
| commit | 6b0ac39453c7c39faf685747e60cb68754148e3c (patch) | |
| tree | 1e1b00618fdc5a50e116c3c18724273be90d6e69 | |
| parent | b847bc1724b6d203d5eaea2d0e4e110648c2b51b (diff) | |
| download | meta-openembedded-6b0ac39453c7c39faf685747e60cb68754148e3c.tar.gz | |
open-vm-tools: add missing X11 dependencies
Certain dependencies that are implied when we build with X11 support -- such as
libxext -- were missing. Add them, and meanwhile switch to using
PACKAGECONFIG[x11] instead of DISTRO_FEATURES.
Signed-off-by: Martin Kelly <mkelly@xevo.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
| -rw-r--r-- | meta-oe/recipes-support/open-vm-tools/open-vm-tools_10.1.5.bb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/meta-oe/recipes-support/open-vm-tools/open-vm-tools_10.1.5.bb b/meta-oe/recipes-support/open-vm-tools/open-vm-tools_10.1.5.bb index 2b2022864e..76d3840e66 100644 --- a/meta-oe/recipes-support/open-vm-tools/open-vm-tools_10.1.5.bb +++ b/meta-oe/recipes-support/open-vm-tools/open-vm-tools_10.1.5.bb | |||
| @@ -47,11 +47,13 @@ KERNEL_MODULES_META_PACKAGE = "${PN}" | |||
| 47 | SYSTEMD_SERVICE_${PN} = "vmtoolsd.service" | 47 | SYSTEMD_SERVICE_${PN} = "vmtoolsd.service" |
| 48 | 48 | ||
| 49 | EXTRA_OECONF = "--without-icu --disable-multimon --disable-docs --disable-tests \ | 49 | EXTRA_OECONF = "--without-icu --disable-multimon --disable-docs --disable-tests \ |
| 50 | --without-gtk2 --without-gtkmm --without-xerces --without-pam \ | 50 | --without-gtkmm --without-xerces --without-pam \ |
| 51 | --disable-grabbitmqproxy --disable-vgauth --disable-deploypkg \ | 51 | --disable-grabbitmqproxy --disable-vgauth --disable-deploypkg \ |
| 52 | --with-linuxdir=${STAGING_KERNEL_DIR} --with-kernel-release=${KERNEL_VERSION} --without-root-privileges" | 52 | --with-linuxdir=${STAGING_KERNEL_DIR} --with-kernel-release=${KERNEL_VERSION} --without-root-privileges" |
| 53 | 53 | ||
| 54 | EXTRA_OECONF += "${@bb.utils.contains('DISTRO_FEATURES', 'x11', '', '--without-x', d)}" | 54 | NO_X11_FLAGS = "--without-x --without-gtk2 --without-gtk3" |
| 55 | X11_DEPENDS = "libxext libxi libxrender libxrandr libxtst gtk+ gdk-pixbuf" | ||
| 56 | PACKAGECONFIG[x11] = ",${NO_X11_FLAGS},${X11_DEPENDS}" | ||
| 55 | 57 | ||
| 56 | EXTRA_OEMAKE = "KERNEL_RELEASE=${KERNEL_VERSION}" | 58 | EXTRA_OEMAKE = "KERNEL_RELEASE=${KERNEL_VERSION}" |
| 57 | 59 | ||
