diff options
author | Alistair Francis <alistair.francis@wdc.com> | 2018-07-10 14:08:15 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-07-15 16:16:16 +0100 |
commit | 6b029c68c8d67f3d7e12d8d9434f167549c8949c (patch) | |
tree | e85055a84cba5d66d0962daa4dd0b60e58813fcd /meta/recipes-graphics/xorg-xserver | |
parent | c7443c85c381ed0f54bbb35c6bb4097a34eef560 (diff) | |
download | poky-6b029c68c8d67f3d7e12d8d9434f167549c8949c.tar.gz |
xorg-xserver: Enable systemd-logind if using systemd
Enable the systemd-logind on xserver if the user set systemd as a
DISTRO_CONFIG. If a user is buildling Xorg with systemd then they most
likley want the systemd-logind PACKAGECONFIG set.
(From OE-Core rev: 358c237e2adf5449e33d99ebbdc12670f4bd465e)
Signed-off-by: Alistair Francis <alistair.francis@wdc.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-xserver')
-rw-r--r-- | meta/recipes-graphics/xorg-xserver/xserver-xorg.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-graphics/xorg-xserver/xserver-xorg.inc b/meta/recipes-graphics/xorg-xserver/xserver-xorg.inc index 882897bd25..89318e53c5 100644 --- a/meta/recipes-graphics/xorg-xserver/xserver-xorg.inc +++ b/meta/recipes-graphics/xorg-xserver/xserver-xorg.inc | |||
@@ -123,7 +123,7 @@ OPENGL_PKGCONFIGS = "dri glx glamor dri3 xshmfence" | |||
123 | PACKAGECONFIG ??= "dri2 udev ${XORG_CRYPTO} \ | 123 | PACKAGECONFIG ??= "dri2 udev ${XORG_CRYPTO} \ |
124 | ${@bb.utils.contains('DISTRO_FEATURES', 'opengl', '${OPENGL_PKGCONFIGS}', '', d)} \ | 124 | ${@bb.utils.contains('DISTRO_FEATURES', 'opengl', '${OPENGL_PKGCONFIGS}', '', d)} \ |
125 | ${@bb.utils.contains('DISTRO_FEATURES', 'opengl wayland', 'xwayland', '', d)} \ | 125 | ${@bb.utils.contains('DISTRO_FEATURES', 'opengl wayland', 'xwayland', '', d)} \ |
126 | ${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)} \ | 126 | ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'systemd systemd-logind', '', d)} \ |
127 | " | 127 | " |
128 | 128 | ||
129 | PACKAGECONFIG[udev] = "--enable-config-udev,--disable-config-udev,udev" | 129 | PACKAGECONFIG[udev] = "--enable-config-udev,--disable-config-udev,udev" |