Commit 53bf4f72 authored by Matt Weber's avatar Matt Weber Committed by Thomas Petazzoni
Browse files

dbus: selinux file context support



[Thomas: remove S30dbus changes.]

Signed-off-by: default avatarMatthew Weber <matthew.weber@rockwellcollins.com>
Reviewed-by: default avatarSamuel Martin <s.martin49@gmail.com>
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent e8fb454d
Loading
Loading
Loading
Loading

package/dbus/S30dbus

100755 → 100644
+0 −0

File mode changed from 100755 to 100644.

+14 −0
Original line number Diff line number Diff line
@@ -44,6 +44,20 @@ ifeq ($(BR2_microblaze),y)
DBUS_CONF_OPTS += --disable-inotify
endif

ifeq ($(BR2_PACKAGE_LIBSELINUX),y)
DBUS_CONF_OPTS += --enable-selinux
DBUS_DEPENDENCIES += libselinux
else
DBUS_CONF_OPTS += --disable-selinux
endif

ifeq ($(BR2_PACKAGE_AUDIT),y)
DBUS_CONF_OPTS += --enable-libaudit
DBUS_DEPENDENCIES += audit libcap-ng
else
DBUS_CONF_OPTS += --disable-libaudit
endif

ifeq ($(BR2_PACKAGE_XLIB_LIBX11),y)
DBUS_CONF_OPTS += --with-x
DBUS_DEPENDENCIES += xlib_libX11