|
@@ -3,6 +3,7 @@ config BR2_PACKAGE_LIBSEMANAGE
|
|
|
depends on BR2_PACKAGE_AUDIT_ARCH_SUPPORTS
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
|
depends on !BR2_STATIC_LIBS
|
|
|
+ depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5 # libselinux -> libsepol
|
|
|
select BR2_PACKAGE_AUDIT
|
|
|
select BR2_PACKAGE_LIBSELINUX
|
|
|
select BR2_PACKAGE_BZIP2
|
|
@@ -17,6 +18,7 @@ config BR2_PACKAGE_LIBSEMANAGE
|
|
|
|
|
|
http://selinuxproject.org/page/Main_Page
|
|
|
|
|
|
-comment "libsemanage needs a toolchain w/ threads, dynamic library"
|
|
|
+comment "libsemanage needs a toolchain w/ threads, dynamic library, gcc >= 5"
|
|
|
depends on BR2_PACKAGE_AUDIT_ARCH_SUPPORTS
|
|
|
- depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
|
|
|
+ depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS || \
|
|
|
+ !BR2_TOOLCHAIN_GCC_AT_LEAST_5
|