Config.in 987 B

123456789101112131415161718192021222324252627
  1. config BR2_PACKAGE_LIBSIGROKDECODE
  2. bool "libsigrokdecode"
  3. depends on !BR2_PACKAGE_PYTHON # python3
  4. depends on BR2_USE_WCHAR # libglib2/python3
  5. depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2/python3
  6. depends on BR2_USE_MMU # libglib2/python3
  7. depends on !BR2_STATIC_LIBS # python3
  8. select BR2_PACKAGE_LIBGLIB2
  9. select BR2_PACKAGE_PYTHON3
  10. help
  11. Libsigrokdecode is a shared library written in C, which
  12. provides (streaming) protocol decoding functionality. Say
  13. yes here if you want to add this functionality to your
  14. buildroot-generated sigrok suite.
  15. This library is a part of the sigrok software suite.
  16. http://sigrok.org/wiki/Libsigrokdecode
  17. comment "libsigrokdecode needs a toolchain w/ wchar, threads, dynamic library"
  18. depends on BR2_USE_MMU
  19. depends on !BR2_PACKAGE_PYTHON
  20. depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
  21. comment "libsigrokdecode is not compatible with python"
  22. depends on BR2_USE_MMU
  23. depends on BR2_PACKAGE_PYTHON