1config BR2_PACKAGE_LIBSEMANAGE 2 bool "libsemanage" 3 depends on BR2_PACKAGE_AUDIT_ARCH_SUPPORTS 4 depends on BR2_TOOLCHAIN_HAS_THREADS 5 depends on !BR2_STATIC_LIBS 6 select BR2_PACKAGE_AUDIT 7 select BR2_PACKAGE_LIBSELINUX 8 select BR2_PACKAGE_BZIP2 9 help 10 libsemanage is the policy management library. It uses 11 libsepol for binary policy manipulation and libselinux for 12 interacting with the SELinux system. It also exec's helper 13 programs for loading policy and for checking whether the 14 file_contexts configuration is valid (load_policy and 15 setfiles from policycoreutils) presently, although this may 16 change at least for the bootstrapping case (for rpm). 17 18 http://selinuxproject.org/page/Main_Page 19 20comment "libsemanage needs a toolchain w/ threads, dynamic library" 21 depends on BR2_PACKAGE_AUDIT_ARCH_SUPPORTS 22 depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS 23