1config BR2_PACKAGE_LIBCGROUP 2 bool "libcgroup" 3 depends on BR2_INSTALL_LIBSTDCPP 4 # libcgroup uses <fts.h> which is not included by default in uClibc 5 depends on BR2_TOOLCHAIN_USES_GLIBC 6 help 7 libcgroup is a library that abstracts the control 8 group file system in Linux. 9 10 http://libcg.sourceforge.net/ 11 12if BR2_PACKAGE_LIBCGROUP 13 14config BR2_PACKAGE_LIBCGROUP_TOOLS 15 bool "install tools" 16 help 17 Include a set of command-line tools for managing cgroups. 18 19endif 20 21comment "libcgroup needs a glibc toolchain w/ C++" 22 depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_USES_GLIBC 23