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