Config.in 706 B

1234567891011121314151617181920212223
  1. config BR2_PACKAGE_SIGROK_CLI
  2. bool "sigrok-cli"
  3. # libsigrok->libglib2:
  4. depends on BR2_USE_WCHAR
  5. depends on BR2_TOOLCHAIN_HAS_THREADS
  6. depends on BR2_USE_MMU
  7. # libsigrok->libzip
  8. depends on !BR2_STATIC_LIBS
  9. # libsigrok
  10. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_7
  11. depends on BR2_ENABLE_LOCALE
  12. select BR2_PACKAGE_LIBSIGROK
  13. help
  14. Sigrok-cli is a command-line frontend for the sigrok
  15. software suite.
  16. http://sigrok.org/wiki/Sigrok-cli
  17. comment "sigrok-cli needs a toolchain w/ locale, wchar, threads, dynamic library, gcc >= 4.7"
  18. depends on BR2_USE_MMU
  19. depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS \
  20. || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 || BR2_STATIC_LIBS \
  21. || !BR2_ENABLE_LOCALE