Config.in 562 B

1234567891011121314151617
  1. config 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. https://wiki.gnome.org/Projects/Libgee
  12. comment "libgee needs a toolchain w/ wchar, threads, gcc >= 4.9"
  13. depends on BR2_USE_MMU
  14. depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \
  15. !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9