mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 05:23:39 +08:00
56d9b88768
Add gcc >= 5 dependency because __builtin_add_overflow is
unconditionally used since
0744fa4f53
https://github.com/SELinuxProject/selinux/releases/tag/3.3
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
23 lines
822 B
Plaintext
23 lines
822 B
Plaintext
config BR2_PACKAGE_RESTORECOND
|
|
bool "restorecond"
|
|
depends on BR2_USE_MMU # libglib2
|
|
depends on BR2_USE_WCHAR # libglib2
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
|
|
depends on !BR2_STATIC_LIBS # libselinux
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5 # libsepol
|
|
select BR2_PACKAGE_DBUS
|
|
select BR2_PACKAGE_DBUS_GLIB
|
|
select BR2_PACKAGE_LIBGLIB2
|
|
select BR2_PACKAGE_LIBSELINUX
|
|
select BR2_PACKAGE_LIBSEPOL
|
|
help
|
|
restorecond is a daemon that watches for file creation and
|
|
then sets the default SELinux file context for that file.
|
|
|
|
https://github.com/SELinuxProject/selinux/wiki/Releases
|
|
|
|
comment "restorecond needs a toolchain w/ wchar, threads, dynamic library, gcc >= 5"
|
|
depends on BR2_USE_MMU
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR || \
|
|
BR2_STATIC_LIBS || !BR2_TOOLCHAIN_GCC_AT_LEAST_5
|