diff options
author | Andrew Shadura <andrew.shadura@collabora.co.uk> | 2016-02-02 18:06:57 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-04 13:09:55 +0000 |
commit | b07e161267b0dac45afa6a97bbfa3a5ea47e967b (patch) | |
tree | 2827464db811b307991a4f0be77e84b056814fc6 | |
parent | 877eae1850174d29b26873673e7331affd795e7e (diff) | |
download | poky-b07e161267b0dac45afa6a97bbfa3a5ea47e967b.tar.gz |
dbus: add user sessions support
Enable the user-sessions support with a PACKAGECONFIG flag.
(From OE-Core rev: f49b43c1a43c92c67c094ccb41d60d41e68394df)
Signed-off-by: Andrew Shadura <andrew.shadura@collabora.co.uk>
Signed-off-by: Joshua Lock <joshua.lock@collabora.co.uk>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-core/dbus/dbus_1.10.6.bb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/meta/recipes-core/dbus/dbus_1.10.6.bb b/meta/recipes-core/dbus/dbus_1.10.6.bb index fec68a474b..245798a00f 100644 --- a/meta/recipes-core/dbus/dbus_1.10.6.bb +++ b/meta/recipes-core/dbus/dbus_1.10.6.bb | |||
@@ -69,7 +69,9 @@ FILES_${PN} = "${bindir}/dbus-daemon* \ | |||
69 | ${datadir}/dbus-1/session.conf \ | 69 | ${datadir}/dbus-1/session.conf \ |
70 | ${datadir}/dbus-1/system.d \ | 70 | ${datadir}/dbus-1/system.d \ |
71 | ${datadir}/dbus-1/system.conf \ | 71 | ${datadir}/dbus-1/system.conf \ |
72 | ${systemd_system_unitdir}" | 72 | ${systemd_system_unitdir} \ |
73 | ${systemd_user_unitdir} \ | ||
74 | " | ||
73 | FILES_${PN}-lib = "${libdir}/lib*.so.*" | 75 | FILES_${PN}-lib = "${libdir}/lib*.so.*" |
74 | RRECOMMENDS_${PN}-lib = "${PN}" | 76 | RRECOMMENDS_${PN}-lib = "${PN}" |
75 | FILES_${PN}-dev += "${libdir}/dbus-1.0/include ${bindir}/dbus-test-tool" | 77 | FILES_${PN}-dev += "${libdir}/dbus-1.0/include ${bindir}/dbus-test-tool" |
@@ -105,6 +107,7 @@ PACKAGECONFIG_class-nativesdk = "" | |||
105 | PACKAGECONFIG[systemd] = "--enable-systemd --with-systemdsystemunitdir=${systemd_system_unitdir},--disable-systemd --without-systemdsystemunitdir,systemd" | 107 | PACKAGECONFIG[systemd] = "--enable-systemd --with-systemdsystemunitdir=${systemd_system_unitdir},--disable-systemd --without-systemdsystemunitdir,systemd" |
106 | PACKAGECONFIG[x11] = "--with-x --enable-x11-autolaunch,--without-x --disable-x11-autolaunch, virtual/libx11 libsm" | 108 | PACKAGECONFIG[x11] = "--with-x --enable-x11-autolaunch,--without-x --disable-x11-autolaunch, virtual/libx11 libsm" |
107 | PACKAGECONFIG[largefile] = "--enable-largefile,--disable-largefile,," | 109 | PACKAGECONFIG[largefile] = "--enable-largefile,--disable-largefile,," |
110 | PACKAGECONFIG[user-session] = "--enable-user-session --with-systemduserunitdir=${systemd_user_unitdir},--disable-user-session" | ||
108 | 111 | ||
109 | do_install() { | 112 | do_install() { |
110 | autotools_do_install | 113 | autotools_do_install |