1config BR2_PACKAGE_LIBGEE 2 bool "libgee" 3 depends on BR2_USE_WCHAR 4 depends on BR2_TOOLCHAIN_HAS_THREADS 5 depends on BR2_USE_MMU # fork() 6 depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 7 select BR2_PACKAGE_LIBGLIB2 8 help 9 Libgee is an utility library providing GObject-based 10 interfaces and classes for commonly used data structures. 11 12 https://wiki.gnome.org/Projects/Libgee 13 14comment "libgee needs a toolchain w/ wchar, threads, gcc >= 4.9" 15 depends on BR2_USE_MMU 16 depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \ 17 !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 18